public CitaResponse LeerPorId(int id) { try { var response = new CitaResponse(); var bc = new CitaComponent(); response.Result = bc.Find(id); return(response); } catch (Exception ex) { var httpError = new HttpResponseMessage() { StatusCode = (HttpStatusCode)422, ReasonPhrase = ex.Message }; throw new HttpResponseException(httpError); } }
public Cita Find(int?id) { var bc = new CitaComponent(); return(bc.Find(id)); }