示例#1
0
        public static DataTable obtenerVentasPorMetodoPago(DateTime fecha_ini, DateTime fecha_fin, string metodo)
        {
            DataTable dt = new DataTable();

            dt = ComandaDato.reporteVentasPorMetodoPago(fecha_ini, fecha_fin, metodo);

            return(dt);
        }