CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
MockEditableRoot.partial.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="MockEditableRoot.partial.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>no summary</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Linq;
11using System.Text;
12
14{
15 partial class MockEditableRoot
16 {
17 [RunLocal()]
18 [Create]
19 protected void DataPortal_Create()
20 {
21 LoadProperty<Guid>(IdProperty, MockEditableRootId);
22 BusinessRules.CheckRules();
23
24 LoadProperty<string>(DataPortalMethodProperty, "create");
25 }
26
27 private void DataPortal_Fetch(Guid criteria)
28 {
29 if (criteria != MockEditableRootId)
30 throw new Exception();
31
32 LoadProperty<Guid>(IdProperty, MockEditableRootId);
33 LoadProperty<string>(DataPortalMethodProperty, "fetch");
34 }
35
36 [Transactional(TransactionalTypes.TransactionScope)]
37 [Insert]
38 protected void DataPortal_Insert()
39 {
40 Guid id = ReadProperty<Guid>(IdProperty);
41 if (id != MockEditableRootId)
42 throw new Exception();
43
44 LoadProperty<string>(DataPortalMethodProperty, "insert");
45 }
46
47 [Transactional(TransactionalTypes.TransactionScope)]
48 [Update]
49 protected void DataPortal_Update()
50 {
51 Guid id = ReadProperty<Guid>(IdProperty);
52 if (id != MockEditableRootId)
53 throw new Exception();
54
55 LoadProperty<string>(DataPortalMethodProperty, "update");
56 }
57
58 [Transactional(TransactionalTypes.TransactionScope)]
59 [DeleteSelf]
60 protected void DataPortal_DeleteSelf()
61 {
62 DataPortal_Delete(ReadProperty<Guid>(IdProperty));
63 }
64
65 [Transactional(TransactionalTypes.TransactionScope)]
66 [Delete]
67 private void DataPortal_Delete(Guid criteria)
68 {
69 Guid id = ReadProperty<Guid>(IdProperty);
70 if (id != MockEditableRootId)
71 throw new Exception();
72
73 LoadProperty<string>(DataPortalMethodProperty, "delete");
74 }
75 }
76}
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.