public CityPlanYearController(IPageRouteVersionRepository pageRouteVersionRepository, ICityPlanYearRepository cityPlanYearRepository, UserManager <ApplicationUser> userManager, IToastNotification toastNotification, IEventLogger <CityPlanYearController> eventLogger, IFileService fileService, IDFGovRepository dFGovRepository, ICityPlanYearVersionRepository cityPlanYearVersionRepository, IConfiguration Configuration) { _pageRouteVersionRepository = pageRouteVersionRepository; _cityPlanYearRepository = cityPlanYearRepository; _userManager = userManager; _toastNotification = toastNotification; _eventLogger = eventLogger; _fileService = fileService; _dFGovRepository = dFGovRepository; _cityPlanYearVersionRepository = cityPlanYearVersionRepository; _configuration = Configuration; }
public CityPlanController(IPageRouteVersionRepository pageRouteVersionRepository, ICityPlanRepository cityPlanRepository, ICityPlanYearRepository cityPlanYearRepository, UserManager <ApplicationUser> userManager, IToastNotification toastNotification, IEventLogger <CityPlanController> eventLogger, IFileService fileService, ICityPlanVersionRepository cityPlanVersionRepository, ICityPlanYearVersionRepository cityPlanYearVersionRepository, IApprovalNotificationsRepository approvalNotificationsRepository) { _pageRouteVersionRepository = pageRouteVersionRepository; _cityPlanRepository = cityPlanRepository; _cityPlanYearRepository = cityPlanYearRepository; _userManager = userManager; _toastNotification = toastNotification; _eventLogger = eventLogger; _fileService = fileService; _cityPlanVersionRepository = cityPlanVersionRepository; _cityPlanYearVersionRepository = cityPlanYearVersionRepository; _approvalNotificationsRepository = approvalNotificationsRepository; }