9using System.Collections.Generic;
18 #region Business Methods
31 #region Factory Methods
35 return dataPortal.
Create();
40 return dataPortal.
Fetch(
new Criteria(
id));
45 dataPortal.
Delete(
new Criteria(
id));
60 public Criteria(
int id)
72 private void DataPortal_Fetch(Criteria criteria)
94 private void DataPortal_Delete(Criteria criteria)
This is the base class from which most business objects will be derived.
virtual void Delete()
Marks the object for deletion.
object GetProperty(IPropertyInfo propertyInfo)
Gets a property's value as a specified type.
void SetProperty(IPropertyInfo propertyInfo, object newValue)
Sets a property's managed field with the supplied value, and then calls PropertyHasChanged if the val...
Base type from which Criteria classes can be derived in a business class.
Maintains metadata about a property.
static void DeleteObject(int id, IDataPortal< T > dataPortal)
static T NewObject(IDataPortal< T > dataPortal)
static T GetObject(int id, IDataPortal< T > dataPortal)
static PropertyInfo< int > IdProperty
void DataPortal_DeleteSelf()
Static dictionary-like class that offers similar functionality to GlobalContext This is used in tests...
static void Reinitialise()
Reinitialise the dictionary, clearing any existing results, ready for the next test
static void Add(string key, string value)
Add an item to the test results, to indicate an outcome of a particular operation
Interface defining the members of the data portal type.
void Delete(params object[] criteria)
Called by a Shared (static in C#) method in the business class to cause immediate deletion of a speci...
object Fetch(params object[] criteria)
Called by a factory method in a business class to retrieve an object, which is loaded with values fro...
object Create(params object[] criteria)
Called by a factory method in a business class to create a new object, which is loaded with default v...
RelationshipTypes
List of valid relationship types between a parent object and another object through a managed propert...
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Update
Update operation (includes insert, update and delete self).
@ Create
Create operation.