public IActionResult GetSpacesByAllocationManager(int id) { var spaces = _spaceService.GetSpacesByAllocationManager(id); var model = _mapper.Map <IList <Space> >(spaces); return(Ok(model)); }