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