public AccountController(GitInsightsDbContext context, IToastNotification toastNotification) { _context = context; ToastNotification = toastNotification; }
public HomeController(GitInsightsDbContext context, IToastNotification toastNotification, IGithubQuerier githubQuerier) { _context = context; _githubQuerier = githubQuerier; ToastNotification = toastNotification; }