Exemple #1
0
 public TlIsteController(IUserRequestTLRepository repository, UserRequestTLService service, ITransferAmountRepository transferAmountRepository, TransferAmountService transferAmountService)
 {
     this.repository = repository;
     this.service    = service;
     this.transferAmountRepository = transferAmountRepository;
     this.transferAmountService    = transferAmountService;
 }
Exemple #2
0
 public TransferAmountController(ITransferAmountRepository repository, TransferAmountService service)
 {
     this.repository = repository;
     this.service    = service;
 }