Exemple #1
0
        public String Delete(Entity.ClsProduct 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("EliminarProducto", ref lst);
                Mensaje = lst[1].Valor.ToString();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(Mensaje);
        }
Exemple #2
0
        public String ActualizarProductos(Entity.ClsProduct p)
        {
            List <ClsParameter> lst = new List <ClsParameter>();
            String Mensaje          = "";

            try
            {
                lst.Add(new ClsParameter("@Code_product", p.Code_product));
                lst.Add(new ClsParameter("@Product_name", p.Product_name));
                lst.Add(new ClsParameter("@Code_trademark", p.Code_trademark));
                lst.Add(new ClsParameter("@Code_category", p.Code_category));
                lst.Add(new ClsParameter("@Description", p.Description));
                lst.Add(new ClsParameter("@Created_at", p.created_at));
                lst.Add(new ClsParameter("@Updated_at", p.updated_at));
                lst.Add(new ClsParameter("@Mensaje", "", SqlDbType.VarChar, ParameterDirection.Output, 50));
                M.EjecutarSP("ActualizarProducto", ref lst);
                Mensaje = lst[7].Valor.ToString();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(Mensaje);
        }