public GameService(TradingPlatformDbContext dbContext, IAccountService accountService,
                    IKeystoreService keystoreService)
 {
     this.dbContext       = dbContext;
     this.accountService  = accountService;
     this.keystoreService = keystoreService;
 }
Beispiel #2
0
 public PaymentService(TradingPlatformDbContext dbContext, ICacheService cache, IKeystoreService keystoreService,
                       IAccountService accountService, IOrderService orderService, IHttpContextAccessor httpContextAccessor,
                       ISmtpService smtpService, INotifierService notifierService, IHashService hashService)
 {
     this.dbContext           = dbContext;
     this.cache               = cache;
     this.keystoreService     = keystoreService;
     this.accountService      = accountService;
     this.orderService        = orderService;
     this.httpContextAccessor = httpContextAccessor;
     this.smtpService         = smtpService;
     this.notifierService     = notifierService;
     this.hashService         = hashService;
 }
 public KeystoreController(IKeystoreService keystoreService)
 {
     this.keystoreService = keystoreService;
 }