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