public async Task <IActionResult> GetFMAdminForUserId(int id) { var fmAdminfromRepo = await _repo.GetFMAdminForUserId(id); var fmAdmin = _mapper.Map <FMAdminForListDto>(fmAdminfromRepo); return(Ok(fmAdmin)); }