public AccountController(IAuthenticationService authenticationService, ICookie cookie, ICookieManager cookieManager, IDiscordService discordService, IActivityReportService activityReportService) { _authenticationService = authenticationService; _cookie = cookie; _cookieManager = cookieManager; _discordService = discordService; _activityReportService = activityReportService; }
public ActivityReportsController(IUnitOfWork uow) { this.uow = uow; this.arsvc = uow.ActivityReportService; }