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