Exemple #1
0
        public static object ValidadProducto(string Codigo)
        {
            TRANSACCIONES.TRANSACCIONES t = new TRANSACCIONES.TRANSACCIONES();
            object res = t.ObenerArticuloServicio(Codigo);

            return(res);
        }
Exemple #2
0
        public static IList BuscarProducto(string Descripcion)
        {
            TRANSACCIONES.TRANSACCIONES t = new TRANSACCIONES.TRANSACCIONES();
            var res = t.ObenerArticuloServicio(string.Empty, Descripcion, 5);

            return(res);
        }
Exemple #3
0
        public object ObenerArticuloServicio(string Codigo, string Descripcion)
        {
            TRANSACCIONES.TRANSACCIONES t = new TRANSACCIONES.TRANSACCIONES();
            var res = t.ObenerArticuloServicio(Codigo, Descripcion, 5);

            return(res);
        }