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
FakePerson.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.Text;
6
8{
10 public class FakePerson : BusinessBase<FakePerson>
11 {
12 public static Csla.PropertyInfo<string> FirstNameProperty = RegisterProperty<string>(nameof(FirstName));
13 public static Csla.PropertyInfo<string> LastNameProperty = RegisterProperty<string>(nameof(LastName));
14 public static Csla.PropertyInfo<string> HomeTelephoneProperty = RegisterProperty<string>(nameof(HomeTelephone));
15 public static Csla.PropertyInfo<string> MobileTelephoneProperty = RegisterProperty<string>(nameof(MobileTelephone));
16 public static Csla.PropertyInfo<FakePersonEmailAddresses> EmailAddressesProperty = RegisterProperty<FakePersonEmailAddresses>(nameof(EmailAddresses));
17
18 #region Properties
19
20 [MaxLength(25)]
21 public string FirstName
22 {
23 get { return GetProperty(FirstNameProperty); }
24 set { SetProperty(FirstNameProperty, value); }
25 }
26
27 [Required]
28 [MaxLength(25)]
29 public string LastName
30 {
31 get { return GetProperty(LastNameProperty); }
32 set { SetProperty(LastNameProperty, value); }
33 }
34
35 public string HomeTelephone
36 {
37 get { return GetProperty(HomeTelephoneProperty); }
38 set { SetProperty(HomeTelephoneProperty, value); }
39 }
40
41 public string MobileTelephone
42 {
43 get { return GetProperty(MobileTelephoneProperty); }
44 set { SetProperty(MobileTelephoneProperty, value); }
45 }
46
48 {
49 get { return GetProperty(EmailAddressesProperty); }
50 }
51
52 #endregion
53
54 #region Business Rules
55
56 protected override void AddBusinessRules()
57 {
59 base.AddBusinessRules();
61
62 // Add additional rules for warning severity level
63 rule = new Csla.Rules.CommonRules.MinLength(LastNameProperty, 2, "Last name is quite short!");
64 rule.Severity = Csla.Rules.RuleSeverity.Warning;
65 BusinessRules.AddRule(rule);
66
67 // Add additional rules for information severity level
68 rule = new Csla.Rules.CommonRules.MinLength(FirstNameProperty, 2, "First name is a bit short");
69 rule.Severity = Csla.Rules.RuleSeverity.Information;
70 BusinessRules.AddRule(rule);
71 }
72
73 protected override void OnChildChanged(Csla.Core.ChildChangedEventArgs e)
74 {
75 if (e.ChildObject is FakePersonEmailAddresses)
76 {
77 BusinessRules.CheckRules(EmailAddressesProperty);
78 OnPropertyChanged(EmailAddressesProperty);
79 }
80 base.OnChildChanged(e);
81 }
82
83 #endregion
84
85 #region Data Access
86
87 [RunLocal]
88 [Create]
89 private void Create([Inject] IChildDataPortal<FakePersonEmailAddresses> dataPortal)
90 {
91 // Create an empty list for holding email addresses
92 LoadProperty(EmailAddressesProperty, dataPortal.CreateChild());
93
94 // Trigger object checks
95 BusinessRules.CheckRules();
96 }
97
98 #endregion
99
100 }
101}
override void OnChildChanged(Csla.Core.ChildChangedEventArgs e)
Definition: FakePerson.cs:73
static Csla.PropertyInfo< string > HomeTelephoneProperty
Definition: FakePerson.cs:14
static Csla.PropertyInfo< string > FirstNameProperty
Definition: FakePerson.cs:12
static Csla.PropertyInfo< FakePersonEmailAddresses > EmailAddressesProperty
Definition: FakePerson.cs:16
static Csla.PropertyInfo< string > MobileTelephoneProperty
Definition: FakePerson.cs:15
static Csla.PropertyInfo< string > LastNameProperty
Definition: FakePerson.cs:13
override void AddBusinessRules()
Definition: FakePerson.cs:56
FakePersonEmailAddresses EmailAddresses
Definition: FakePerson.cs:48
Business rule for when one of two strings must be provided
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
Contains event data about the changed child object.
Maintains metadata about a property.
Base class used to create common rules.
Definition: CommonRules.cs:21
RuleSeverity Severity
Gets or sets the severity for this rule.
Definition: CommonRules.cs:25
Business rule for a minimum length string.
Definition: CommonRules.cs:239
Interface defining the members of the child data portal type.
@ Serializable
Prevents updating or inserting until the transaction is complete.