...
Code Block | ||||
---|---|---|---|---|
| ||||
var branch = Manager.EntityFactory.CreateEntity<JiwaFinancials.Jiwa.JiwaApplication.Entities.Sales.Branch>(); branch.ReadRecord("ABC123"); |
An example of using the CollectionItem Factory of the Manager:
Code Block | ||||
---|---|---|---|---|
| ||||
var debtorPrice = Manager.CollectionItemFactory.CreateCollectionItem<JiwaFinancials.Jiwa.JiwaInventory.DebtorSpecificInventorySpecific>(); debtorPrice.Debtor.Search(); Inventory.DebtorPrices.Add(debtorPrice); |
...