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
FakePersonEmailAddress.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.Text;
5
7{
8 public class FakePersonEmailAddress : BusinessBase<FakePersonEmailAddress>
9 {
10 public static Csla.PropertyInfo<string> EmailAddressProperty = RegisterProperty<string>(nameof(EmailAddress));
11
12 #region Properties
13
14 [Required]
15 [MaxLength(250)]
16 public string EmailAddress
17 {
18 get { return GetProperty(EmailAddressProperty); }
19 set { SetProperty(EmailAddressProperty, value); }
20 }
21
22 #endregion
23
24 #region Data Access
25
26 [RunLocal]
27 [Create]
28 private void Create()
29 {
30 // Trigger object checks
31 BusinessRules.CheckRules();
32 }
33
34 #endregion
35
36 }
37}
static Csla.PropertyInfo< string > EmailAddressProperty
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
Maintains metadata about a property.