public static List <Pedido> buscarPedidosFiltrados(int est, int tipDoc, int?nroDoc, double?montoDesde, double?mostoHasta, string nom, string ape, string raSoc, int?cuit, DateTime?fdesde, DateTime?fhasta)
 {
     try
     {
         return(PedidoDAO.GetByFiltros(est, tipDoc, nroDoc, montoDesde, mostoHasta, nom, ape, raSoc, cuit, fdesde, fhasta));
     }
     catch (ApplicationException ex)
     {
         throw new ApplicationException(ex.Message);
     }
 }