public List <cImpuesto> Listar() { try { return(ImpuestosDA.Listar()); } catch (Exception Ex) { throw Ex; } }
public cImpuesto BuscarPorID(Int32 ID) { try { return(ImpuestosDA.BuscarPorID(ID)); } catch (Exception Ex) { return(null); throw Ex; } }