:
: Persistance -
, DAO .
: DAO, Factory.
: . , List Search: , , . , .
: . , . , .
,
: , , ,
, DAO. Utility, .
: Factory DAO, .
: , . Factory.
: API.
:
PurchaseOrder po;
PurchaseOrderController poc;
poc = PurchaseOrderControllerFactory.Instance.Create();
po = poc.GetPurchaseOrder(42);
// do stuff
poc.SavePurchaseOrder(po);
.
: - . , .
. ( ). , . DAO Factory, , , .
, PurchaseOrder - DTO, . .
:
PurchaseOrderSystem pos = new PurchaseOrderSystem();
List<PurchaseOrder> transacted;
transacted = pos.TransactPurchaseOrders(john, 23);