public IActionResult GetMCom(string trid) { var stud = mentorrepository.GetMCompletedTrainings(trid); if (!stud.Any()) { return(NotFound()); } return(Ok(stud)); }