コード例 #1
0
 public PaymentController(DAISInterviewTaskDbContext context, IBankAccountService bankAccountService,
                          IPaymentService paymentService, UserManager <User> userManager)
 {
     this.context            = context;
     this.bankAccountService = bankAccountService;
     this.paymentService     = paymentService;
     this.userManager        = userManager;
 }
コード例 #2
0
ファイル: BankAccountService.cs プロジェクト: ssdody/DAISTask
 public BankAccountService(DAISInterviewTaskDbContext context, UserManager <User> userManager)
 {
     this.context     = context;
     this.userManager = userManager;
 }
コード例 #3
0
 public PaymentService(DAISInterviewTaskDbContext context)
 {
     this.context = context;
 }