示例#1
0
        public String ActualizarCompanyProduct(Entity.CompanyProduct p)
        {
            List <ClsParameter> lst = new List <ClsParameter>();
            String Mensaje          = "";

            try
            {
                lst.Add(new ClsParameter("@code_product", p.Code_product));
                lst.Add(new ClsParameter("@name_product", p.Product_name));
                lst.Add(new ClsParameter("@code_brand", p.Code_brand));
                lst.Add(new ClsParameter("@Code_category", p.Code_category));
                lst.Add(new ClsParameter("@precio", p.Precio));
                lst.Add(new ClsParameter("@unidad_medida", p.Unidad_medida));
                lst.Add(new ClsParameter("@ruc_empresa", p.Ruc_empresa));
                lst.Add(new ClsParameter("@updated_at", p.updated_at));
                lst.Add(new ClsParameter("@Mensaje", "", SqlDbType.VarChar, ParameterDirection.Output, 50));
                M.EjecutarSP("ActualizarCompanyProducts", ref lst);
                Mensaje = lst[8].Valor.ToString();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(Mensaje);
        }
示例#2
0
        public String DeleteCompanyProduct(Entity.CompanyProduct p)
        {
            List <ClsParameter> lst = new List <ClsParameter>();
            String Mensaje          = "";

            try
            {
                lst.Add(new ClsParameter("@Code_product", p.Code_product));
                lst.Add(new ClsParameter("@Mensaje", "", SqlDbType.VarChar, ParameterDirection.Output, 50));
                M.EjecutarSP("EliminarCompanyProducts", ref lst);
                Mensaje = lst[1].Valor.ToString();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(Mensaje);
        }