public InventorySupplierModule()
 {
     unitOfWork      = new UnitOfWork();
     AddressBook     = new FluentAddressBook(unitOfWork);
     LocationAddress = new FluentLocationAddress(unitOfWork);
     Supplier        = new FluentSupplier(unitOfWork);
     Email           = new FluentEmail(unitOfWork);
 }
 public ServiceInformationModule()
 {
     unitOfWork                = new UnitOfWork();
     ServiceInformation        = new FluentServiceInformation(unitOfWork);
     ServiceInformationInvoice = new FluentServiceInformationInvoice(unitOfWork);
     LocationAddress           = new FluentLocationAddress(unitOfWork);
     AddressBook               = new FluentAddressBook(unitOfWork);
     Customer      = new FluentCustomer(unitOfWork);
     Contract      = new FluentContract(unitOfWork);
     Udc           = new FluentUdc(unitOfWork);
     ScheduleEvent = new FluentScheduleEvent(unitOfWork);
 }
Example #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);
 }
Example #4
0
 public CustomerModule()
 {
     unitOfWork         = new UnitOfWork();
     Customer           = new FluentCustomer(unitOfWork);
     CustomerLedger     = new FluentCustomerLedger(unitOfWork);
     AccountsReceivable = new FluentAccountReceivable(unitOfWork);
     CustomerClaim      = new FluentCustomerClaim(unitOfWork);
     Contract           = new FluentContract(unitOfWork);
     Email           = new FluentEmail(unitOfWork);
     Phone           = new FluentPhone(unitOfWork);
     LocationAddress = new FluentLocationAddress(unitOfWork);
     ScheduleEvent   = new FluentScheduleEvent(unitOfWork);
     Invoice         = new FluentInvoice(unitOfWork);
     AddressBook     = new FluentAddressBook(unitOfWork);
 }