public BranchCashFlowAppService(IUnitOfWork <MainContext> unitOfWork,
                                 IMoneyActionAppService moneyActionAppService,
                                 IAppSession appSession)
 {
     _unitOfWork            = unitOfWork;
     _moneyActionAppService = moneyActionAppService;
     _appSession            = appSession;
 }
Esempio n. 2
0
 public TreasuryMoneyActionAppService(
     IUnitOfWork <MainContext> unitOfWork,
     IMoneyActionAppService moneyActionAppService,
     IAppSession appSession)
 {
     _unitOfWork            = unitOfWork;
     _moneyActionAppService = moneyActionAppService;
     _appSession            = appSession;
 }
 public ClientCashFlowAppService(
     IUnitOfWork <MainContext> unitOfWork,
     IMoneyActionAppService moneyActionAppService,
     IAppSession appSession,
     IClientAppService clientAppService,
     IClientCashAppService clientCashAppService)
 {
     _unitOfWork            = unitOfWork;
     _moneyActionAppService = moneyActionAppService;
     _appSession            = appSession;
 }