コード例 #1
0
        public List <gsDocVenta_ReporteVenta_ClienteResumenResult> Reporte_VentasClienteResumen(int idEmpresa, int codigoUsuario, string codAgenda, string codigoVendedor, DateTime fechaInicial, DateTime fechaFinal, int year)
        {
            CobranzasBL objCobranzasBL;

            try
            {
                List <gsDocVenta_ReporteVenta_ClienteResumenResult> list = new List <gsDocVenta_ReporteVenta_ClienteResumenResult>();

                objCobranzasBL = new CobranzasBL();
                list           = objCobranzasBL.Reporte_VentasClienteResumen(idEmpresa, codigoUsuario, codAgenda, codigoVendedor, fechaInicial, fechaFinal, year);

                return(list);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }