public List<vTIPOSCONT> GetsTiposContratos()
 {
     TiposContratosBLL o = new TiposContratosBLL();
     return o.GetsActivos();
 }
 public ByARpt Update(vTIPOSCONT Reg)
 {
     TiposContratosBLL o = new TiposContratosBLL();
     return o.Update(Reg);
 }
 public string Gets()
 {
     TiposContratosBLL o = new TiposContratosBLL();
     return ByAUtil.convertListToXML(o.Gets());
 }
 public ByARpt Insert(vTIPOSCONT Reg)
 {
     TiposContratosBLL o = new TiposContratosBLL();
     return o.Insert(Reg);
 }
 public vTIPOSCONT Get(string ID)
 {
     TiposContratosBLL o = new TiposContratosBLL();
     return o.Get(ID);
 }