示例#1
0
        // PUT api/<controller>/5
        // public void Put(int id, [FromBody]string value)
        //{
        //}

        // DELETE api/Concepto/5
        public HttpResponseMessage Delete(long id)
        {
            HttpResponseMessage response;

            try
            {
                ConceptoService service = (ConceptoService) new ConceptoService().setDatabase(db);
                Concepto        c       = service.find(id);
                service.delete(id);

                if (c.Estado == "D")
                {
                    response = this.getSuccessResponse(c);
                }
                else
                {
                    response = this.getSuccessResponse("No se puede eliminar porque existe una compra o hay stock disponible");
                }
            }
            catch (Exception e)
            {
                response = this.getErrorResponse(e);
            }
            return(response);
        }
示例#2
0
        // GET api/Concepto/5
        public HttpResponseMessage GetConcepto(long id)
        {
            HttpResponseMessage response;

            try
            {
                ConceptoService service = (ConceptoService) new ConceptoService().setDatabase(db);
                Concepto        c       = service.find(id);



                response = this.getSuccessResponse(c);
            }
            catch (Exception e)
            {
                response = this.getErrorResponse(e);
            }
            return(response);
        }