19 private static PropertyInfo<int> UnInitedProperty = RegisterProperty<int>(c => c.UnInitedP,
"UnInitedP");
22 get {
return GetProperty(UnInitedProperty); }
23 set { SetProperty(UnInitedProperty, value); }
26 private static PropertyInfo<string> AnotherProperty = RegisterProperty<string>(c => c.Another,
"Another");
29 get {
return GetProperty(AnotherProperty); }
30 set { SetProperty(AnotherProperty, value); }
This is the base class from which most business objects will be derived.
Maintains metadata about a property.
@ Serializable
Prevents updating or inserting until the transaction is complete.