9using System.Collections.Generic;
15 partial class MockEditableRoot
22 BusinessRules.CheckRules();
24 LoadProperty<string>(DataPortalMethodProperty,
"create");
27 private void DataPortal_Fetch(Guid criteria)
30 throw new Exception();
33 LoadProperty<string>(DataPortalMethodProperty,
"fetch");
40 Guid
id = ReadProperty<Guid>(IdProperty);
42 throw new Exception();
44 LoadProperty<string>(DataPortalMethodProperty,
"insert");
51 Guid
id = ReadProperty<Guid>(IdProperty);
53 throw new Exception();
55 LoadProperty<string>(DataPortalMethodProperty,
"update");
62 DataPortal_Delete(ReadProperty<Guid>(IdProperty));
67 private void DataPortal_Delete(Guid criteria)
69 Guid
id = ReadProperty<Guid>(IdProperty);
71 throw new Exception();
73 LoadProperty<string>(DataPortalMethodProperty,
"delete");
void DataPortal_DeleteSelf()
static readonly Guid MockEditableRootId
TransactionalTypes
Provides a list of possible transactional technologies to be used by the server-side DataPortal.
@ Update
Update operation (includes insert, update and delete self).
@ Create
Create operation.
@ Delete
Delete operation.