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
Csla.test/FieldManager/Async/Root.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="Root.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//-----------------------------------------------------------------------
8
9using System;
10using System.Threading.Tasks;
11
13{
15 public class Root : BusinessBase<Root>
16 {
17 private static PropertyInfo<string> DataProperty = RegisterProperty<string>(typeof(Root), new PropertyInfo<string>("Data"));
18 public string Data
19 {
20 get { return GetProperty<string>(DataProperty); }
21 set { SetProperty<string>(DataProperty, value); }
22 }
23
24 private static PropertyInfo<Child> ChildProperty = RegisterProperty<Child>(typeof(Root), new PropertyInfo<Child>("Child"));
25 public Child Child
26 {
27 get
28 {
29 return GetProperty<Child>(ChildProperty);
30 }
31 }
32
33 private static PropertyInfo<ChildList> ChildListProperty = RegisterProperty<ChildList>(typeof(Root), new PropertyInfo<ChildList>("ChildList"));
35 {
36 get
37 {
38 return GetProperty<ChildList>(ChildListProperty);
39 }
40 }
41
42 public async Task FetchChildAsync(IChildDataPortal<Child> childDataPortal)
43 {
44 SetProperty(ChildProperty, await Child.GetChildAsync(childDataPortal));
45 }
46
47 [Create]
48 protected async Task CreateAsync([Inject] IChildDataPortal<Child> childDataPortal, [Inject]IChildDataPortal<ChildList> childListDataPortal)
49 {
50 LoadProperty(ChildProperty, await Child.NewChildAsync(childDataPortal));
51 LoadProperty(ChildListProperty, await ChildList.GetListAsync(childListDataPortal));
52 }
53
54 [Insert]
55 private async Task InsertAsync()
56 {
57 await FieldManager.UpdateChildrenAsync();
58 }
59
60 [Update]
61 private async Task UpdateAsync()
62 {
63 await FieldManager.UpdateChildrenAsync();
64 }
65 }
66}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
Maintains metadata about a property.
static async Task< Child > NewChildAsync(IChildDataPortal< Child > childDataPortal)
static async Task< Child > GetChildAsync(IChildDataPortal< Child > childDataPortal)
static async Task< ChildList > GetListAsync(IChildDataPortal< ChildList > childDataPortal)
async Task FetchChildAsync(IChildDataPortal< Child > childDataPortal)
async Task CreateAsync([Inject] IChildDataPortal< Child > childDataPortal, [Inject]IChildDataPortal< ChildList > childListDataPortal)
Interface defining the members of the child data portal type.
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Update
Update operation (includes insert, update and delete self).
@ Create
Create operation.