Exemplo n.º 1
0
 public OtherExpenseBusiness(IOtherExpenseRepository otherExpenseRepository, IChartOfAccountsBusiness chartOfAccountsBusiness, IBankBusiness bankBusiness, ICompaniesBusiness companiesBusiness, IPaymentModesBusiness paymentModeBusiness, IEmployeeRepository employeeRepository, ICommonBusiness commonBusiness)
 {
     _otherExpenseRepository  = otherExpenseRepository;
     _chartOfAccountsBusiness = chartOfAccountsBusiness;
     _bankBusiness            = bankBusiness;
     _companiesBusiness       = companiesBusiness;
     _paymentModeBusiness     = paymentModeBusiness;
     _employeeRepository      = employeeRepository;
     _commonBusiness          = commonBusiness;
 }
Exemplo n.º 2
0
 public OtherExpenseService(IOtherExpenseRepository _otherExpenseRepository, IOtherExpenseValidator _otherExpenseValidator)
 {
     _repository = _otherExpenseRepository;
     _validator  = _otherExpenseValidator;
 }