public CompanyAppService(IUnitOfWork <MainContext> unitOfWork , ICompanyCashAppService companyCashAppService , ICompanyCountryAppService companyCountryAppService , IAppSession appSession) { _unitOfWork = unitOfWork; _companyCashAppService = companyCashAppService; _companyCountryAppService = companyCountryAppService; _appSession = appSession; }
public CoinAppService(IUnitOfWork <MainContext> unitOfWork, IBranchCashAppService branchCashAppService, ITreasuryCashAppService treasuryCashAppService, ICompanyCashAppService companyCashAppService, IClientCashAppService clientCashAppService, IAppSession appSession) { _unitOfWork = unitOfWork; _branchCashAppService = branchCashAppService; _treasuryCashAppService = treasuryCashAppService; _companyCashAppService = companyCashAppService; _clientCashAppService = clientCashAppService; _appSession = appSession; }