public ProjectFilterParamController(ILoggerServices loggerServices, IUserServices userService, IUserDepartmentServices userDepartmentServices, IProjectFilterParamService projectFilterParamService, IMapper mapper, ICategoryService categoryService) : base(loggerServices, userService, userDepartmentServices)
 {
     _projectFilterParamService = projectFilterParamService;
     _categoryService           = categoryService;
     _mapper = mapper;
 }
 public SystemManagementController(ILoggerServices loggerServices, IUserServices userService, IUserDepartmentServices userDepartmentServices, IProjectFilterParamService projectFilterParamService, IMapper mapper, ISettingsService settingsService) : base(loggerServices, userService, userDepartmentServices)
 {
     _projectFilterParamService = projectFilterParamService;
     _settingsService           = settingsService;
     _mapper = mapper;
 }