9using System.Collections.Generic;
18 #region Business Methods
31 #region Factory Methods
35 return dataPortal.
Create();
39 return dataPortal.
Create(
new Criteria1(0));
44 return dataPortal.
Fetch(
new Criteria(
id));
48 dataPortal.
Delete(
new Criteria(
id));
63 public Criteria(
int id)
67 private class Criteria1 : CriteriaBase<Criteria1>
74 public Criteria1(
int id)
96 private void DataPortal_Fetch(Criteria criteria)
102 private void DataPortal_Fetch(Criteria1 criteria)
105 TestResults.Reinitialise();
106 TestResults.Add(
"SplitOverload",
"Fetched1");
109 private void DataPortal_Delete(Criteria criteria)
111 TestResults.Reinitialise();
112 TestResults.Add(
"SplitOverload",
"Deleted");
115 private void DataPortal_Delete(Criteria1 criteria)
117 TestResults.Reinitialise();
118 TestResults.Add(
"SplitOverload",
"Deleted1");
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.
BusinessRules BusinessRules
Provides access to the broken rules functionality.
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 PropertyInfo< int > IdProperty
static T GetObject(int id, IDataPortal< T > dataPortal)
static T NewObject(IDataPortal< T > dataPortal)
static T NewObjectWithCriteria(IDataPortal< T > dataPortal)
static void DeleteObject(int id, IDataPortal< T > dataPortal)
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...
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Create
Create operation.