Example #1
0
 public TransactionService(CodexBankDbContext context, IEmailSender emailSender)
     : base(context)
 {
     this.emailSender = emailSender;
 }
Example #2
0
 public BankUserRoleSeeder(CodexBankDbContext context)
 {
     this.context = context;
 }
Example #3
0
 public BankAccountService(CodexBankDbContext context, IBankAccountUniqueIdHelper uniqueIdHelper)
     : base(context)
 {
     this.uniqueIdHelper = uniqueIdHelper;
 }
Example #4
0
 public CardService(CodexBankDbContext context, ICardHelper cardHelper)
     : base(context)
 {
     this.cardHelper = cardHelper;
 }
Example #5
0
 protected BaseService(CodexBankDbContext context)
 {
     this.context = context;
 }
Example #6
0
 public UserService(CodexBankDbContext context)
     : base(context)
 {
 }