Ejemplo n.º 1
0
 public vPPROPONENTESS Get(decimal id)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.Get(id);
 }
Ejemplo n.º 2
0
 public vCONSORCIOSUTXC GetMiembro(decimal IDE_PROP, string ID_MIEMBROS)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.GetMiembro(IDE_PROP, ID_MIEMBROS);
 }
Ejemplo n.º 3
0
 public ByARpt DeleteMiembroTerceros(string IDE_TER, string ID_MIEMBROS)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.DeleteMiembroTercero(IDE_TER, ID_MIEMBROS);
 }
Ejemplo n.º 4
0
 public ByARpt DeleteProponente(decimal ID)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.DeleteProponente(ID);
 }
Ejemplo n.º 5
0
 public ByARpt AsignarNit(vPPROPONENTESS Proponente)
 {
     ProponentesBLL oProp = new ProponentesBLL();
     return oProp.AsignarNit(Proponente);
 }
Ejemplo n.º 6
0
 public ByARpt DeleteMiembro(decimal IDE_PROP, string ID_MIEMBROS)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.DeleteMiembro(IDE_PROP, ID_MIEMBROS);
 }
Ejemplo n.º 7
0
 public ByARpt UpdateMiembroTerceros(vCONSORCIOSUTXC Reg)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.UpdateMiembrosTercero(Reg);
 }
Ejemplo n.º 8
0
 public bool GetSiNitAsignado(decimal ID)
 {
     ProponentesBLL oProp = new ProponentesBLL();
     return oProp.GetSiNitAsignado(ID);
 }
Ejemplo n.º 9
0
 public ByARpt InsertMiembro(vCONSORCIOSUTXC Reg)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.InsertMiembros(Reg);
 }
Ejemplo n.º 10
0
 public ByARpt Update(vPPROPONENTESS Reg)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.Update(Reg);
 }
Ejemplo n.º 11
0
 public ByARpt Insert(vPPROPONENTESS Reg)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.Insert(Reg);
 }
Ejemplo n.º 12
0
 public string GetsMiembrosTerceros(string IDE_TER)
 {
     ProponentesBLL o = new ProponentesBLL();
     return ByAUtil.convertListToXML(o.GetsMiembrosTercero(IDE_TER));
 }
Ejemplo n.º 13
0
 public string GetsMiembrosProponentes(decimal IDE_PROP)
 {
     ProponentesBLL o = new ProponentesBLL();
     return ByAUtil.convertListToXML(o.GetsMiembrosProponentes(IDE_PROP));
 }
Ejemplo n.º 14
0
 public vCONSORCIOSUTXC GetMiembroTerceros(string IDE_TER, string ID_MIEMBROS)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.GetMiembroTercero(IDE_TER, ID_MIEMBROS);
 }
Ejemplo n.º 15
0
 public ByARpt AdjudicarOrNot(vPPROPONENTESS oDto)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.AdjudicarOrNot(oDto);
 }
Ejemplo n.º 16
0
 public string Gets(string NumeroProceso)
 {
     ProponentesBLL o = new ProponentesBLL();
     List<vPPROPONENTESS> lrProponentes = o.Gets(NumeroProceso);
     return ByAUtil.convertListToXML(lrProponentes);
 }
Ejemplo n.º 17
0
 public bool GetSiAdjudicado(string numProc)
 {
     ProponentesBLL o = new ProponentesBLL();
     return o.GetSiAdjudicado(numProc);
 }