public ActionResult GetEmployees(int clubid, string personneltype, int?conceptid = null, int?personnelid = null) { _logger.LogInformation("Logging Info"); PersonnelFilters filters = RequestHelper.GetPersonnelFilters(this.Request); List <Personnel> employees = new PersonnelService(clubid, filters).GetPersonnel(); var emp = employees.Where((e) => e.clubId == clubid); return(Ok(emp)); }