예제 #1
0
 public OrdersController(ICommandSender bus, IReadOnlyRepository <Order> repository, IFindAccount accounts, ITokenSecurity tokenSecurity)
 {
     this.bus           = bus;
     this.repository    = repository;
     this.accounts      = accounts;
     this.tokenSecurity = tokenSecurity;
 }
예제 #2
0
 public PrintJobsController(
     ICommandSender bus,
     IReadOnlyRepository <PrintJob> repository,
     IFindAccount accounts,
     ICertificateLocator certificateLocator,
     ITokenSecurity tokenSecurity)
 {
     this.bus                = bus;
     this.repository         = repository;
     this.accounts           = accounts;
     this.certificateLocator = certificateLocator;
     this.tokenSecurity      = tokenSecurity;
 }
 public MintRequestsController(ICommandSender bus, IReadOnlyRepository <MintRequest> repository, IFindAccount accounts)
 {
     this.bus        = bus;
     this.repository = repository;
     this.accounts   = accounts;
 }