protected override void Bind(Sybase.Persistence.ConnectionProfile profile, System.Data.IDataReader rs) { this.__idInteraccion = com.sybase.afx.db.ReaderUtil.GetString(profile,rs,"idInteraccion",0); this.__empresa = com.sybase.afx.db.ReaderUtil.GetString(profile,rs,"empresa",1); this.__formularioMercadoTamano_CodigoSAP = com.sybase.afx.db.ReaderUtil.GetString(profile,rs,"formularioMercadoTamano_CodigoSAP",2); this.__formularioMercadoSegmento_CodigoSAP = com.sybase.afx.db.ReaderUtil.GetString(profile,rs,"formularioMercadoSegmento_CodigoSAP",3); this.__formularioMercadoSubsegmento_CodigoSAP = com.sybase.afx.db.ReaderUtil.GetString(profile,rs,"formularioMercadoSubsegmento_CodigoSAP",4); this.__pending = com.sybase.afx.db.ReaderUtil.GetBoolean(profile,rs,"pending",5); this.__pendingChange = com.sybase.afx.db.ReaderUtil.GetChar(profile,rs,"pendingChange",6); this.__replayPending = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"replayPending",7); this.__replayFailure = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"replayFailure",8); this.__interaccionFK = com.sybase.afx.db.ReaderUtil.GetNullableLong(profile,rs,"interaccionFK",9); this.__surrogateKey = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"surrogateKey",10); this.__replayCounter = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"replayCounter",11); this.__disableSubmit = com.sybase.afx.db.ReaderUtil.GetBoolean(profile,rs,"disableSubmit",12); _isNew = false; _isDirty = false; if (this.IsPending) { this.SetOriginalState(null); this.__originalStateValid = false; } else { YPF.Comercial.RRCC.SUP.FormularioMercado os_1 = new YPF.Comercial.RRCC.SUP.FormularioMercado(); os_1.CopyAll(this); this.SetOriginalState(os_1); } }
private void Internal_Create() { bool ok = true; Sybase.Persistence.LocalTransaction localTransaction = null; try { localTransaction = YPF.Comercial.RRCC.SUP.CRMMobileDesaDB.BeginTransaction(); if(__surrogateKey == 0) __surrogateKey = (long)(YPF.Comercial.RRCC.SUP.KeyGenerator.GenerateId()); YPF.Comercial.RRCC.SUP.FormularioMercado os_1 = new YPF.Comercial.RRCC.SUP.FormularioMercado(); os_1.CopyAll(this); this.SetOriginalState(os_1); PendingChange = 'C'; SetReplayCounter(KeyGenerator.GenerateId()); SetReplayFailure(0); ReplayPending = 0; if(_isNew) { Create(true); } else { Update(true); } } catch(System.SystemException e) { ok = false; throw e; } finally { if(localTransaction != null) { localTransaction.EndTransaction(ok); } } }
/// <summary> /// Refresh the mobile business object from database. /// </summary> public void Refresh() { if (!_isNew && !__isOsEntity) { YPF.Comercial.RRCC.SUP.FormularioMercado ent = Load(_pk()); CopyAll(ent); if (this.IsPending) { this.SetOriginalState(null); this.__originalStateValid = false; } else { YPF.Comercial.RRCC.SUP.FormularioMercado os_1 = new YPF.Comercial.RRCC.SUP.FormularioMercado(); os_1.CopyAll(this); this.SetOriginalState(os_1); } _isNew = false; _isDirty = false; } }