Ejemplo n.º 1
0
 public NewPurchaseUnitController(CustomerAccountService accountService, ItemChargeService itemChargeService,
                                  CustomerService customerService, StockService stockService, ContractService contractService, AccountTransactionService accountTransactionService)
     : base(accountService, itemChargeService, customerService)
 {
     _stockService              = stockService;
     _contractService           = contractService;
     _accountTransactionService = accountTransactionService;
 }
Ejemplo n.º 2
0
 public NewAccountController(CustomerService customerService, CustomerAccountService accountService, ItemChargeService itemChargeService, StockService stockService, ContractService contractService, MiscService miscService, AccountTransactionService accountTransactionService)
 {
     _customerService           = customerService;
     _accountService            = accountService;
     _itemChargeService         = itemChargeService;
     _stockService              = stockService;
     _contractService           = contractService;
     _miscService               = miscService;
     _accountTransactionService = accountTransactionService;
 }
Ejemplo n.º 3
0
 public AccountController(CustomerService customerService, CustomerAccountService accountService,
                          StockService stockService, ItemChargeService itemChargeService, ContractService contractService,
                          DocumentTemplateService documentTemplateService)
 {
     _customerService         = customerService;
     _accountService          = accountService;
     _stockService            = stockService;
     _itemChargeService       = itemChargeService;
     _contractService         = contractService;
     _documentTemplateService = documentTemplateService;
     InitialisePaymentPeriodViewBag(contractService);
     InitialiseContractTypeViewBag(contractService);
     InitialiseContractChangeableProductLifeCycleViewBag(stockService);
 }
Ejemplo n.º 4
0
 public ItemChargeController(ItemChargeService itemChargeService)
 {
     _itemChargeService = itemChargeService;
 }
Ejemplo n.º 5
0
 public NewRentalUnitController(CustomerService customerService, CustomerAccountService accountService, StockService stockService, MiscService miscService, ItemChargeService itemChargeService, AccountTransactionService accountTransactionService) : base(accountService, itemChargeService, customerService)
 {
     _stockService = stockService;
     _miscService  = miscService;
     _accountTransactionService = accountTransactionService;
 }
Ejemplo n.º 6
0
 protected NewUnitBaseController(CustomerAccountService accountService, ItemChargeService itemChargeService, CustomerService customerService)
 {
     _accountService    = accountService;
     _itemChargeService = itemChargeService;
     _customerService   = customerService;
 }