Пример #1
0
 public AccountPayableDetailModule()
 {
     unitOfWork           = new UnitOfWork();
     AccountPayableDetail = new FluentAccountPayableDetail(unitOfWork);
     Invoice             = new FluentInvoice(unitOfWork);
     InvoiceDetail       = new FluentInvoiceDetail(unitOfWork);
     PurchaseOrderDetail = new FluentPurchaseOrderDetail(unitOfWork);
     PurchaseOrder       = new FluentPurchaseOrder(unitOfWork);
     AccountPayable      = new FluentAccountPayable(unitOfWork);
 }
Пример #2
0
 public SupplierLedgerModule()
 {
     unitOfWork     = new UnitOfWork();
     SupplierLedger = new FluentSupplierLedger(unitOfWork);
     Supplier       = new FluentSupplier(unitOfWork);
     Invoice        = new FluentInvoice(unitOfWork);
     GeneralLedger  = new FluentGeneralLedger(unitOfWork);
     AddressBook    = new FluentAddressBook(unitOfWork);
     AccountPayable = new FluentAccountPayable(unitOfWork);
 }
Пример #3
0
 public SupplierModule()
 {
     unitOfWork      = new UnitOfWork();
     Supplier        = new FluentSupplier(unitOfWork);
     GeneralLedger   = new FluentGeneralLedger(unitOfWork);
     SupplierLedger  = new FluentSupplierLedger(unitOfWork);
     AddressBook     = new FluentAddressBook(unitOfWork);
     Emails          = new FluentEmail(unitOfWork);
     AccountPayable  = new FluentAccountPayable(unitOfWork);
     Udc             = new FluentUdc(unitOfWork);
     ChartOfAccount  = new FluentChartOfAccount(unitOfWork);
     ItemMaster      = new FluentItemMaster(unitOfWork);
     LocationAddress = new FluentLocationAddress(unitOfWork);
 }