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
ProviderList.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ProviderList.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.Text;
11using Csla;
13{
15 public class ProviderList : BusinessBindingListBase<ProviderList, ProviderChild>
16 {
17 public ProviderList()
18 {
19 AllowEdit = true;
20 AllowNew = true;
21 AllowRemove = true;
22 }
23
24 public static ProviderList GetList()
25 {
26 ProviderList returnValue = new ProviderList();
27 returnValue.Add(new ProviderChild(true));
28 returnValue.Add(new ProviderChild(true));
29 return returnValue;
30 }
31
32 protected override object AddNewCore()
33 {
34 ProviderChild child = new ProviderChild();
35 Add(child);
36 return child;
37 }
38
39 //error testing
40 public new ProviderList Save()
41 {
42 throw new Exception();
43 }
44
45 }
46
48 public class ProviderChild : BusinessBase<ProviderChild>
49 {
50 public static PropertyInfo<int> DataProperty = RegisterProperty<int>(c => c.Data);
51 public int Data
52 {
53 get { return GetProperty(DataProperty); }
54 set { SetProperty(DataProperty, value); }
55 }
56
58 {
59 MarkAsChild();
60 }
61
62 public ProviderChild(bool makeOld)
63 {
64 MarkAsChild();
65 if (makeOld)
66 MarkOld();
67 }
68
69 public void MarkItOld()
70 {
71 MarkOld();
72 }
73 }
74}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
This is the base class from which most business collections or lists will be derived.
Maintains metadata about a property.
static PropertyInfo< int > DataProperty
Definition: ProviderList.cs:50
@ Serializable
Prevents updating or inserting until the transaction is complete.