9using System.Collections.Generic;
17 #region Business Methods
28 #region Factory Methods
32 return dataPortal.
Create();
36 return dataPortal.
Create(
new OtherCriteria(0));
41 return dataPortal.
Fetch(
new Criteria(
id));
46 dataPortal.
Delete(
new Criteria(
id));
54 private class Criteria
61 public Criteria(
int id)
66 private class OtherCriteria
73 public OtherCriteria(
int id)
80 using (BypassPropertyChecks)
84 BusinessRules.CheckRules();
90 using (BypassPropertyChecks)
94 BusinessRules.CheckRules();
100 using (BypassPropertyChecks)
104 BusinessRules.CheckRules();
107 private void DataPortal_Fetch(Criteria criteria)
109 using (BypassPropertyChecks)
111 TestResults.Reinitialise();
112 TestResults.Add(
"SingleOverload",
"Fetched");
114 private void DataPortal_Fetch(OtherCriteria criteria)
116 using (BypassPropertyChecks)
118 TestResults.Reinitialise();
119 TestResults.Add(
"SingleOverload",
"Fetched1");
122 private void DataPortal_Delete(Criteria criteria)
124 TestResults.Reinitialise();
125 TestResults.Add(
"SingleOverload",
"Deleted");
128 private void DataPortal_Delete(OtherCriteria criteria)
130 TestResults.Reinitialise();
131 TestResults.Add(
"SingleOverload",
"Deleted1");
This is the base class from which most business objects will be derived.
Maintains metadata about a property.
static SingleOverload NewObjectWithCriteria(IDataPortal< SingleOverload > dataPortal)
static void DeleteObject(int id, IDataPortal< SingleOverload > dataPortal)
static SingleOverload NewObject(IDataPortal< SingleOverload > dataPortal)
static PropertyInfo< int > IdProperty
static SingleOverload GetObject(int id, IDataPortal< SingleOverload > 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.
@ Delete
Delete operation.