Beispiel #1
0
        public IngredientesBO ObtenerIngredientes(int Id)
        {
            var       ex        = new IngredientesBO();
            String    strBuscar = string.Format("Select ID, Nombre FROM Ingredientes where ID = {0}", Id);
            DataTable datos     = conex.Tabla_Consultada(strBuscar);
            DataRow   row       = datos.Rows[0];

            ex.Id     = Convert.ToInt32(row["ID_Clasificacion"]);
            ex.Nombre = row["Medida"].ToString();
            return(ex);
        }
Beispiel #2
0
        public int EliminarIngrediente(IngredientesBO ObjP)
        {
            string sql = "Delete from Ingredientes where ID = '" + ObjP.Id + "'";

            return(conex.EjecutarComando(sql));
        }
Beispiel #3
0
        public int ActualizarrIngrediente(IngredientesBO ObjP)
        {
            string sql = "Update Ingredientes Set Nombre='" + ObjP.Nombre + "' where ID='" + ObjP.Id + "'";

            return(conex.EjecutarComando(sql));
        }
Beispiel #4
0
        public int AgregarIngrediente(IngredientesBO ObjP)
        {
            string sql = "Insert into Ingredientes (Nombre, Imagen, Energia, Proteina, Liquidos, Hidratos, Fibra, Id_Clasificacion) values ('" + ObjP.Nombre + "', '" + ObjP.Imagen + "', '" + ObjP.Energia + "', '" + ObjP.Proteina + "', , '" + ObjP.Loquidos + "', '" + ObjP.Hidratos + "', , '" + ObjP.Fibra + "', '" + ObjP.Id_Clasificion + "')";

            return(conex.EjecutarComando(sql));
        }