コード例 #1
0
 public CompanyAppService(IUnitOfWork <MainContext> unitOfWork
                          , ICompanyCashAppService companyCashAppService
                          , ICompanyCountryAppService companyCountryAppService
                          , IAppSession appSession)
 {
     _unitOfWork               = unitOfWork;
     _companyCashAppService    = companyCashAppService;
     _companyCountryAppService = companyCountryAppService;
     _appSession               = appSession;
 }
コード例 #2
0
 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;
 }