public override void AnnuleModification() { clg_CRA_CRAYON l_clone = (clg_CRA_CRAYON) this.Clone; c_CRA_CN = l_clone.CRA_CN; c_ETU_CN = l_clone.ETU_CN; c_CLS_CN = l_clone.CLS_CN; }
private void CreerClone() { if (base.Clone == null) { clg_ETU_ETUI l_clone = new clg_ETU_ETUI(base.c_ID, true); l_clone.Initialise(c_ETU_CN, c_PUS_CN); } }
public void Initialise (Int32 pCRA_CN, clg_ETU_ETUI pETU_CN, clg_TN_TN pCLS_CN) { c_CRA_CN = pCRA_CN; c_ETU_CN = pETU_CN; c_ETU_CN.ListeCRA_CRAYON.Add(this); c_CLS_CN = pCLS_CN; c_CLS_CN.ListeCRA_CRAYON.Add(this); }
public void Initialise() { clg_JeuEnregistrement l_rds; string l_MsgErr = ""; string l_ordreSQL = "SELECT ETU_CN, PUS_CN FROM ETU_ETUI"; l_rds = clg_Controleur.c_cnx.GetObjConnexion.ExecuteSELECT(l_ordreSQL, ref l_MsgErr); for (int i = 0; i <= l_rds.NombreLignes - 1; i++) { clg_ETU_ETUI l_Objet; l_Objet = new clg_ETU_ETUI(clg_ChargementBase.Cnn.RetourneCompteurFormate("ETU_CN", clg_ETU_ETUI.ID_Table, long.Parse(clg_Modele.ValeurDonnee(l_rds.get_Donnee(i, 0)).ToString()))); l_Objet.Initialise( Int32.Parse(clg_Modele.ValeurDonnee(l_rds.get_Donnee(i, 0)).ToString()), clg_ChargementBase.Modele.ListePUS_PUITS_STOCKAGE.Dictionnaire[clg_ChargementBase.Cnn.RetourneCompteurFormate("", clg_PUS_PUITS_STOCKAGE.ID_Table,long.Parse(clg_Modele.ValeurDonnee(l_rds.get_Donnee(i, 1)).ToString()))]); clg_Controleur.c_ColObjet.Add(l_Objet.ID, l_Objet); } }