Beispiel #1
0
        public static int Insert_Proveedor(string nombre, Nullable <long> telefono, Nullable <decimal> deuda)
        {
            var BDD = new ProgAvanzada_ArqSoftware_RestauranteEntities2();

            return(BDD.Insert_Proveedor(nombre, telefono, deuda));
        }
Beispiel #2
0
        public static int Insert_Ingrediente(string nombre, Nullable <short> tipo, Nullable <decimal> cantidad)
        {
            var BDD = new ProgAvanzada_ArqSoftware_RestauranteEntities2();

            return(BDD.Insert_Ingrediente(nombre, tipo, cantidad));
        }
Beispiel #3
0
        public static int Insert_Empleado(string nombre, string apellido, Nullable <short> puesto, Nullable <decimal> sueldo, Nullable <System.DateTime> contratacion, Nullable <bool> activo)
        {
            var BDD = new ProgAvanzada_ArqSoftware_RestauranteEntities2();

            return(BDD.Insert_Empleado(nombre, apellido, puesto, sueldo, contratacion, activo));
        }
 public static int Insert_Proveedor(string nombre, Nullable<long> telefono, Nullable<decimal> deuda)
 {
     var BDD = new ProgAvanzada_ArqSoftware_RestauranteEntities2();
     return BDD.Insert_Proveedor(nombre, telefono, deuda);
 }
 public static int Insert_Ingrediente(string nombre, Nullable<short> tipo, Nullable<decimal> cantidad)
 {
     var BDD = new ProgAvanzada_ArqSoftware_RestauranteEntities2();
     return BDD.Insert_Ingrediente(nombre, tipo, cantidad);
 }
 public static int Insert_Empleado(string nombre, string apellido, Nullable<short> puesto, Nullable<decimal> sueldo, Nullable<System.DateTime> contratacion, Nullable<bool> activo)
 {
     var BDD = new ProgAvanzada_ArqSoftware_RestauranteEntities2();
     return BDD.Insert_Empleado(nombre, apellido, puesto, sueldo, contratacion, activo);
 }