Example #1
0
        public DataTable GetGuiaCompraMaizPorFecha(DateTime FechaIni, DateTime FechaFin, string EmpresaID)
        {
            CD_Producto ObjCD_Producto = new CD_Producto(AppSettings.GetConnectionString);
            DataTable   dtTMP          = new DataTable();

            dtTMP = ObjCD_Producto.GetGuiaCompraMaizPorFecha(FechaIni, FechaFin, EmpresaID);
            return(dtTMP);
        }