public static void DeSerialiserListe() { XmlSerializer serialiseur = new XmlSerializer(typeof(ListePrincipale)); StreamReader lecteur = new StreamReader("Text.xml"); ListeTachesPrincipale = (ListePrincipale)serialiseur.Deserialize(lecteur); lecteur.Close(); ListeTachesPrincipale.MiseAJourTempsTotal(); }
public static void RetirerProgrammes(System.Collections.IList lstPrg) { List <Programme> tmpLstPrg = new List <Programme>(); foreach (Programme item in lstPrg) { tmpLstPrg.Add(item); } foreach (Programme item in tmpLstPrg) { ListeTachesPrincipale.RetirerProgramme(item); } }
public static void MiseAJourProgramme(Programme oldPrg, Programme newPrg) { ListeTachesPrincipale.MiseAJourProgramme(oldPrg, newPrg); }
public static void AjouterProgramme(string itl, TimeSpan dr) { ListeTachesPrincipale.AjouterProgramme(new Programme(itl, dr)); }
public static void MiseAJourTache(DateTime dtCrt, ContrainteTemps ctrTps) { ListeTachesPrincipale.MiseAJourTache(dtCrt, ctrTps); }
public static void MiseAJourTache(Tache oldTch, Tache newTch) { ListeTachesPrincipale.MiseAJourTache(oldTch, newTch); }
// METHODES ========================= public static void CreerTache(string itl, TimeSpan dr) { ListeTachesPrincipale.AjouterTache(new Tache(itl, dr, Statuts.aFaire, "")); }