コード例 #1
0
 public AccountController(GitInsightsDbContext context, IToastNotification toastNotification)
 {
     _context          = context;
     ToastNotification = toastNotification;
 }
コード例 #2
0
 public HomeController(GitInsightsDbContext context, IToastNotification toastNotification, IGithubQuerier githubQuerier)
 {
     _context          = context;
     _githubQuerier    = githubQuerier;
     ToastNotification = toastNotification;
 }