예제 #1
0
 public ClientServiceFacade(IReadService <Klijent> clientRead, IInsertService <Klijent> clientInsert, IUpdateService <Klijent> clientUpdate, IDeleteService <Klijent> clientDelete)
 {
     this._clientRead   = clientRead;
     this._clientInsert = clientInsert;
     this._clientUpdate = clientUpdate;
     this._clientDelete = clientDelete;
 }
예제 #2
0
 public AccountBalanceServiceFacade(IReadService <Stanje> accountBalanceReadService,
                                    IInsertService <Stanje> accountBalanceInsertService,
                                    IUpdateService <Stanje> accountBalanceUpdateService,
                                    IDeleteService <Stanje> accountBalanceDeleteService,
                                    IGetBalancesByAccountService balancesByAccountService)
 {
     this._accountBalanceReadService   = accountBalanceReadService;
     this._accountBalanceInsertService = accountBalanceInsertService;
     this._accountBalanceUpdateService = accountBalanceUpdateService;
     this._accountBalanceDeleteService = accountBalanceDeleteService;
     this._balancesByAccountService    = balancesByAccountService;
 }
예제 #3
0
 public TransactionController(
     ITransactionService transactionService,
     IInsertService insertService,
     IWithdrawService withdrawService,
     ITransferService transferService,
     IAccountService accountService)
 {
     _TransactionService = transactionService;
     _InsertService      = insertService;
     _WithdrawService    = withdrawService;
     _TransferService    = transferService;
     _AccountService     = accountService;
 }
예제 #4
0
 public ProducerService(ILogger <ProducerService> logger, IInsertService insertService)
 {
     this.logger        = logger;
     this.insertService = insertService;
 }
예제 #5
0
 public AccountBalanceInsertValidation(IInsertService <Stanje> insertService, IValidationService <Stanje> validation)
 {
     this._insertService = insertService;
     this._validation    = validation;
 }
예제 #6
0
 public TransferService(IInsertService insertService, IWithdrawService withdrawService, IAccountService accountService)
 {
     _insertService   = insertService;
     _withdrawService = withdrawService;
     _accountService  = accountService;
 }
 public ClientInsertValidation(IInsertService <Klijent> clientService, IValidationService <Klijent> validation)
 {
     this._clientService = clientService;
     this._validation    = validation;
 }