public AgregarEspecieResponse Agregar(AgregarEspecieRequest request) { try { var response = new AgregarEspecieResponse(); var bc = new EspecieComponent(); response.Result = bc.Add(request.Especie); return(response); } catch (Exception ex) { var httpError = new HttpResponseMessage() { StatusCode = (HttpStatusCode)422, // UNPROCESSABLE ENTITY ReasonPhrase = ex.Message }; throw new HttpResponseException(httpError); } }
public Especie Add(Especie especie) { var bc = new EspecieComponent(); return(bc.Add(especie)); }