Ejemplo n.º 1
0
 public TlIsteController(IUserRequestTLRepository repository, UserRequestTLService service, ITransferAmountRepository transferAmountRepository, TransferAmountService transferAmountService)
 {
     this.repository = repository;
     this.service    = service;
     this.transferAmountRepository = transferAmountRepository;
     this.transferAmountService    = transferAmountService;
 }
Ejemplo n.º 2
0
 public TransferAmountService(ITransferAmountRepository repository)
 {
     this.repository = repository;
 }
Ejemplo n.º 3
0
 public TransferAmountController(ITransferAmountRepository repository, TransferAmountService service)
 {
     this.repository = repository;
     this.service    = service;
 }