Beispiel #1
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);
 }
Beispiel #2
0
 public AccountPayableModule()
 {
     unitOfWork             = new UnitOfWork();
     AccountPayable         = new FluentAccountPayable(unitOfWork);
     Supplier               = new FluentSupplier(unitOfWork);
     PackingSlip            = new FluentPackingSlip(unitOfWork);
     PackingSlipDetail      = new FluentPackingSlipDetail(unitOfWork);
     PurchaseOrder          = new FluentPurchaseOrder(unitOfWork);
     PurchaseOrderDetail    = new FluentPurchaseOrderDetail(unitOfWork);
     SupplierLedger         = new FluentSupplierLedger(unitOfWork);
     SupplierInvoice        = new FluentSupplierInvoice(unitOfWork);
     SupplierInvoiceDetail  = new FluentSupplierInvoiceDetail(unitOfWork);
     GeneralLedger          = new FluentGeneralLedger(unitOfWork);
     applicationViewFactory = new ApplicationViewFactory();
     AddressBook            = new FluentAddressBook(unitOfWork);
     Customer               = new FluentCustomer(unitOfWork);
     ChartOfAccount         = new FluentChartOfAccount(unitOfWork);
     Inventory              = new FluentInventory(unitOfWork);
     Invoice = new FluentInvoice(unitOfWork);
 }