Ejemplo n.º 1
0
 public JobController(ISwiftService swift)
 {
     _swift = swift;
 }
Ejemplo n.º 2
0
 public MyAPI(IValidator <MakeTransfer> validator, IRepository <AccountState> accounts, ISwiftService swiftService)
 {
     this.validator = validator;
     this.accounts  = accounts;
     this.swift     = swiftService;
 }
Ejemplo n.º 3
0
 public HomeController(ISwiftService swift)
 {
     _swift = swift;
 }
Ejemplo n.º 4
0
 public NufController()
 {
     this.Bc    = new Bc();
     this.repo  = new AccountStateRepository();
     this.swift = new Swift();
 }