コード例 #1
0
 public BankAccountController(UserManager <ApplicationUser> manager,
                              ApplicationDbContext context,
                              SqlBankAccountData bankAccountData,
                              SqlHistoryEntryData historyEntryData)
 {
     _userManager      = manager;
     _bankAccountData  = bankAccountData;
     _historyEntryData = historyEntryData;
     _context          = context;
 }
コード例 #2
0
 public HistoryEntryController(SqlBankAccountData bankAccountData,
                               SqlHistoryEntryData historyEntryData)
 {
     _bankAccountData  = bankAccountData;
     _historyEntryData = historyEntryData;
 }