public ActionResult Manter(int?id) { var turma = id.HasValue ? _servicoClass.GetById(id.Value) : new Class(); BuildDropDownLists(turma); return(View(turma)); }
public IActionResult GetById(long id) { try { return(Ok(classBusiness.GetById(id))); } catch (Exception) { return(BadRequest("Não foi possível completar a requisição")); throw; } }