Beispiel #1
0
        public static DataTable Mostrar_Precio_Venta(string cod_articulo)
        {
            DArtPrecio Obj = new DArtPrecio
            {
                Dcod_articulo = cod_articulo,
            };

            return(Obj.Mostrar_Precio_Venta(Obj));
        }
Beispiel #2
0
        public static DataTable Seleccionar_Precio_Venta(string cod_articulo, string cod_deposito)
        {
            DArtPrecio Obj = new DArtPrecio
            {
                Dcod_articulo = cod_articulo,
                Dcod_deposito = cod_deposito,
            };

            return(Obj.Seleccionar_Precio_Venta(Obj));
        }
Beispiel #3
0
        public static string Eliminar(string cod_articulo, string cod_precio, string cod_deposito)
        {
            DArtPrecio Obj = new DArtPrecio
            {
                Dcod_articulo = cod_articulo,
                Dcod_precio   = cod_precio,
                Dcod_deposito = cod_deposito,
            };

            return(Obj.Eliminar(Obj));
        }
Beispiel #4
0
        public static string Insertar(string cod_articulo, string cod_precio, string cod_deposito, decimal monto, DateTime fecha_reg, DateTime fecha_venc, bool venc_precio)
        {
            DArtPrecio Obj = new DArtPrecio
            {
                Dcod_articulo = cod_articulo,
                Dcod_precio   = cod_precio,
                Dcod_deposito = cod_deposito,
                Dmonto        = monto,
                Dfecha_reg    = fecha_reg,
                Dfecha_venc   = fecha_venc,
                Dvenc_precio  = venc_precio
            };

            return(Obj.Insertar(Obj));
        }