public List<vETAPAS> GetsActivas() { EtapasBLL o = new EtapasBLL(); return o.Gets().Where(t => t.ESTADO == "AC").ToList(); }
public string Gets() { EtapasBLL o = new EtapasBLL(); return ByAUtil.convertListToXML(o.Gets()); }