Beispiel #1
0
 protected  override void Bind(Sybase.Persistence.ConnectionProfile profile, System.Data.IDataReader rs) 
 {
     this.__idPregunta = com.sybase.afx.db.ReaderUtil.GetInt(profile,rs,"idPregunta",0);
     this.__idRespuesta = com.sybase.afx.db.ReaderUtil.GetInt(profile,rs,"idRespuesta",1);
     this.__pending = com.sybase.afx.db.ReaderUtil.GetBoolean(profile,rs,"pending",2);
     this.__pendingChange = com.sybase.afx.db.ReaderUtil.GetChar(profile,rs,"pendingChange",3);
     this.__replayPending = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"replayPending",4);
     this.__replayFailure = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"replayFailure",5);
     this.__respuestaFK = com.sybase.afx.db.ReaderUtil.GetNullableLong(profile,rs,"respuestaFK",6);
     this.__preguntaFK = com.sybase.afx.db.ReaderUtil.GetNullableLong(profile,rs,"preguntaFK",7);
     this.__surrogateKey = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"surrogateKey",8);
     this.__replayCounter = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"replayCounter",9);
     this.__disableSubmit = com.sybase.afx.db.ReaderUtil.GetBoolean(profile,rs,"disableSubmit",10);
     _isNew = false;
     _isDirty = false;
     if (this.IsPending)
     {
         this.SetOriginalState(null);
         this.__originalStateValid = false;
     }
     else
     {
         YPF.Comercial.RRCC.SUP.OpcionRespuesta os_1 = new YPF.Comercial.RRCC.SUP.OpcionRespuesta();
         os_1.CopyAll(this);
         this.SetOriginalState(os_1);
     }
 }
Beispiel #2
0
 /// <summary>
 /// Refresh the mobile business object from database.
 /// </summary>
 public void Refresh()
 {
     if (!_isNew && !__isOsEntity)
     {
         YPF.Comercial.RRCC.SUP.OpcionRespuesta ent = Load(_pk());
         CopyAll(ent);
         if (this.IsPending)
         {
             this.SetOriginalState(null);
             this.__originalStateValid = false;
         }
         else
         {
             YPF.Comercial.RRCC.SUP.OpcionRespuesta os_1 = new YPF.Comercial.RRCC.SUP.OpcionRespuesta();
             os_1.CopyAll(this);
             this.SetOriginalState(os_1);
         }
         _isNew = false;
         _isDirty = false;
     }
 }