Ejemplo n.º 1
0
        public DataTable GetVentasCredito(string EmpresaID, DateTime FechaIni, DateTime FechaFin)
        {
            CD_Credito objCD_Credito = new CD_Credito(AppSettings.GetConnectionString);
            DataTable  dtTMP         = new DataTable();

            dtTMP = objCD_Credito.GetVentasCredito(EmpresaID, FechaIni, FechaFin);
            return(dtTMP);
        }