コード例 #1
0
        public HttpResponseMessage Post(Subgrupos_Ingredientes varSubgrupos_Ingredientes)
        {
            if (ModelState.IsValid)
            {
                var data = "-1";
                try
                {
                    data = Convert.ToString(this.service.Insert(varSubgrupos_Ingredientes));
                    var bitacora = BitacoraHelper.GetBitacora(Request, object_id, Convert.ToInt32(data), BitacoraHelper.TypeSql.INSERT, "sp_InsSubgrupos_Ingredientes", new JavaScriptSerializer().Serialize(varSubgrupos_Ingredientes), true);
                    serviceBitacora.Insert(bitacora);
                }
                catch (ServiceException ex)
                {
                    var bitacora = BitacoraHelper.GetBitacora(Request, object_id, 0, BitacoraHelper.TypeSql.INSERT, "sp_InsSubgrupos_Ingredientes", new JavaScriptSerializer().Serialize(varSubgrupos_Ingredientes), true);
                    serviceBitacora.Insert(bitacora);
                    return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message));
                }

                return(Request.CreateResponse(HttpStatusCode.OK, data, Configuration.Formatters.JsonFormatter));
            }
            else
            {
                var errors   = ModelState.SelectMany(m => m.Value.Errors.Select(err => err.ErrorMessage != string.Empty ? err.ErrorMessage : err.Exception.Message).ToList()).ToList();
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, 0, BitacoraHelper.TypeSql.INSERT, "sp_InsSubgrupos_Ingredientes", new JavaScriptSerializer().Serialize(varSubgrupos_Ingredientes), false, errors.ToString());
                serviceBitacora.Insert(bitacora);
                return(Request.CreateResponse(HttpStatusCode.BadRequest, errors));
            }
        }
コード例 #2
0
        public HttpResponseMessage Delete(int id)
        {
            Subgrupos_Ingredientes varSubgrupos_Ingredientes = this.service.GetByKey(id, false);
            bool result = false;

            if (varSubgrupos_Ingredientes == null)
            {
                return(Request.CreateResponse(HttpStatusCode.NotFound));
            }

            try
            {
                result = this.service.Delete(id);//, globalData, dataReference);
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, id, BitacoraHelper.TypeSql.DELETE, "sp_DelSubgrupos_Ingredientes", new JavaScriptSerializer().Serialize(varSubgrupos_Ingredientes), result);
                serviceBitacora.Insert(bitacora);
            }
            catch (ServiceException ex)
            {
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, id, BitacoraHelper.TypeSql.DELETE, "sp_DelSubgrupos_Ingredientes", new JavaScriptSerializer().Serialize(varSubgrupos_Ingredientes), result, ex.Message);
                serviceBitacora.Insert(bitacora);
                return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message));
            }

            return(Request.CreateResponse(HttpStatusCode.OK, result));
        }
コード例 #3
0
        public HttpResponseMessage Get_Datos_Generales(int id)
        {
            Subgrupos_Ingredientes entity = this.service.ListaSelAll(1, 1, "Subgrupos_Ingredientes.Folio='" + id.ToString() + "'", "").Subgrupos_Ingredientess.First();
            Subgrupos_Ingredientes result = new Subgrupos_Ingredientes();

            result.Folio         = entity.Folio;
            result.Nombre        = entity.Nombre;
            result.Clasificacion = entity.Clasificacion;
            result.Clasificacion_Clasificacion_Ingredientes = entity.Clasificacion_Clasificacion_Ingredientes;

            return(Request.CreateResponse(HttpStatusCode.OK, result, Configuration.Formatters.JsonFormatter));
        }
コード例 #4
0
        public HttpResponseMessage PutTunnel(Subgrupos_Ingredientes emp, string user, string password)
        {
            var client = new System.Net.WebClient();

            client.Headers = TokenManager.GetAuthenticationHeader(user, password);
            client.Headers["Content-Type"] = "application/json";
            var dataString = new JavaScriptSerializer().Serialize(emp);

            var result = client.UploadString(new Uri(baseApi + ApiControllerUrl + "/Put?Id=" + emp.Folio), "PUT"
                                             , dataString);

            return(Request.CreateResponse(HttpStatusCode.OK, result, Configuration.Formatters.JsonFormatter));
        }
コード例 #5
0
        public HttpResponseMessage Put_Datos_Generales(Subgrupos_Ingredientes varSubgrupos_Ingredientes_Datos_Generales)
        {
            var data = "-1";

            try
            {
                data = Convert.ToString(this.service.Update_Datos_Generales(varSubgrupos_Ingredientes_Datos_Generales));
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, varSubgrupos_Ingredientes_Datos_Generales.Folio, BitacoraHelper.TypeSql.UPDATE, "sp_UpdSubgrupos_Ingredientes", new JavaScriptSerializer().Serialize(varSubgrupos_Ingredientes_Datos_Generales), true);
                serviceBitacora.Insert(bitacora);
            }
            catch (ServiceException ex)
            {
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, varSubgrupos_Ingredientes_Datos_Generales.Folio, BitacoraHelper.TypeSql.UPDATE, "sp_UpdSubgrupos_Ingredientes", new JavaScriptSerializer().Serialize(varSubgrupos_Ingredientes_Datos_Generales), false, ex.Message);
                serviceBitacora.Insert(bitacora);
                return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message));
            }

            return(Request.CreateResponse(HttpStatusCode.OK, data, Configuration.Formatters.JsonFormatter));
        }
コード例 #6
0
        public HttpResponseMessage Subgrupos_IngredientesGenerateID()
        {
            Subgrupos_Ingredientes varSubgrupos_Ingredientes = new Subgrupos_Ingredientes();
            var data = "-1";

            try
            {
                data = Convert.ToString(this.service.Insert(varSubgrupos_Ingredientes));
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, Convert.ToInt32(data), BitacoraHelper.TypeSql.INSERT, "sp_Subgrupos_IngredientesGenerateID", new JavaScriptSerializer().Serialize(varSubgrupos_Ingredientes), true);
                serviceBitacora.Insert(bitacora);
            }
            catch (ServiceException ex)
            {
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, 0, BitacoraHelper.TypeSql.INSERT, "sp_Subgrupos_IngredientesGenerateID", new JavaScriptSerializer().Serialize(varSubgrupos_Ingredientes), true);
                serviceBitacora.Insert(bitacora);
                return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message));
            }

            return(Request.CreateResponse(HttpStatusCode.OK, data, Configuration.Formatters.JsonFormatter));
        }