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
RootWithNullableProperty.cs
Go to the documentation of this file.
1using System;
3
5{
7 public partial class RootWithNullableProperty : BusinessBase<RootWithNullableProperty>
8 {
9 public static readonly PropertyInfo<SmartDate?> TodayProperty = RegisterProperty<SmartDate?>(c => c.Today);
11 {
12 get { return GetProperty(TodayProperty); }
13 set { SetProperty(TodayProperty, value); }
14 }
15
16 public static readonly PropertyInfo<DateTime?> OtherDateProperty = RegisterProperty<DateTime?>(c => c.OtherDate);
17 public DateTime? OtherDate
18 {
19 get { return GetProperty(OtherDateProperty); }
20 set { SetProperty(OtherDateProperty, value); }
21 }
22 }
23}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
Maintains metadata about a property.
@ Serializable
Prevents updating or inserting until the transaction is complete.
Provides a date data type that understands the concept of an empty date value.
Definition: SmartDate.cs:32