public ListarTodosCitaResponse ListarTodos() { try { var response = new ListarTodosCitaResponse(); var bc = new CitaComponent(); response.Result = bc.ToList(); return(response); } catch (Exception ex) { var httpError = new HttpResponseMessage() { StatusCode = (HttpStatusCode)422, ReasonPhrase = ex.Message }; throw new HttpResponseException(httpError); } }
public List <Cita> ToList() { var bc = new CitaComponent(); return(bc.ToList()); }