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