/// <summary>
 /// constructor
 /// </summary>
 public CustomerFeeController(
     ICustomerFeeProcessor customerFeeProcessor,
     ICustomerFeeFileImportProcessor customerFeeImportProcessor
     )
 {
     this.customerFeeProcessor       = customerFeeProcessor;
     this.customerFeeImportProcessor = customerFeeImportProcessor;
 }
Exemple #2
0
 public CustomerFeeMaster(
     IAuthorizationProcessor authorizationProcessor,
     ICustomerFeeProcessor customerFeeProcessor,
     ILogManager logManager
     )
 {
     this.authorizationProcessor = authorizationProcessor;
     this.customerFeeProcessor   = customerFeeProcessor;
     logger = logManager.GetLogger(typeof(CustomerFeeMaster));
 }
Exemple #3
0
 /// <summary>constructor</summary>
 public CustomerFeeFileImportProcessor(
     ICompanyProcessor companyProcessor,
     ILoginUserProcessor loginUserProcessor,
     IApplicationControlProcessor applicationControlProcessor,
     ICustomerProcessor customerProcessor,
     ICurrencyProcessor currencyProcessor,
     ICustomerFeeProcessor customerFeeProcessor
     )
 {
     this.companyProcessor            = companyProcessor;
     this.loginUserProcessor          = loginUserProcessor;
     this.applicationControlProcessor = applicationControlProcessor;
     this.customerProcessor           = customerProcessor;
     this.currencyProcessor           = currencyProcessor;
     this.customerFeeProcessor        = customerFeeProcessor;
 }