9using System.Collections.Generic;
29 private static PropertyInfo<int> IdProperty = RegisterProperty<int>(c => c.Id,
"Internal Id", 0);
34 return GetProperty<int>(IdProperty);
38 SetProperty<int>(IdProperty,value);
42 private static PropertyInfo<string> NameProperty = RegisterProperty<string>(c => c.Name,
"Item Name",
"");
47 return GetProperty<string>(NameProperty);
51 SetProperty<string>(NameProperty, value);
55 private static PropertyInfo<SmartDate> DateCreatedProperty = RegisterProperty<SmartDate>(c => c.DateCreated,
"Date Created On");
60 return GetProperty<SmartDate>(DateCreatedProperty).Text;
67 SetProperty<SmartDate>(DateCreatedProperty, test);
72 private static PropertyInfo<string> MethodCalledProperty = RegisterProperty<string>(c => c.MethodCalled,
"MethodCalled",
"");
77 return GetProperty<string>(MethodCalledProperty);
81 SetProperty<string>(MethodCalledProperty, value);
88 newItem.LoadProperty(IdProperty,
id);
89 newItem.LoadProperty(NameProperty, name);
90 newItem.LoadProperty(DateCreatedProperty,
new SmartDate(createdOn));
96 [DeleteSelf]
void DataPortal_DeleteSelf()
This is the base class from which most business objects will be derived.
Maintains metadata about a property.
void DataPortal_Delete(object criteria)
static SingleItem GetSingleItem()
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Update
Update operation (includes insert, update and delete self).
@ Delete
Delete operation.
Provides a date data type that understands the concept of an empty date value.
static bool TryParse(string value, ref SmartDate result)
Converts a string value into a SmartDate.