Exemplo n.º 1
0
 public static List <cCompras> Listar(String TipoDocumento, DateTime FechaDesde, DateTime FechaHasta)
 {
     try
     {
         return(ComprasDA.Listar(TipoDocumento, FechaDesde, FechaHasta));
     }
     catch (Exception Ex)
     {
         throw Ex;
     }
 }
Exemplo n.º 2
0
 public List <cCompras> Listar(String TipoDocumento)
 {
     try
     {
         return(ComprasDA.Listar(TipoDocumento));
     }
     catch (Exception Ex)
     {
         throw Ex;
     }
 }