-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contacts.cs
68 lines (59 loc) · 2.47 KB
/
Contacts.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//Ajout des esapces de noms pour la sérialisation des objets
//pour la maniplulation des fichiers
using System.IO;
// Pour avois accès à la sérialisation et désérialisation des fichiers Json
using System.Text.Json;
namespace Gestion_de_contacts
{
internal class Contacts
{
//Déclaration des propriétés de la classe Contacts
public string Nom { get; set; }
public string Prenom { get; set; }
public string Telephone { get; set; }
//On doit sérialiser cette liste pour la sauvegarder dans un fichier Json
public static List<Contacts> ListContacts = new List<Contacts>();
//Génération du constructeur par l'outil tournevis à gauche semi-automatiquement
public Contacts(string nom, string prenom, string telephone)
{
Nom = nom;
Prenom = prenom;
Telephone = telephone;
}
//Méthode pour ajouter un contact spécifique
public static void SaveContact(Contacts contact)
{
ListContacts.Add(contact);
string jsonString = JsonSerializer.Serialize(ListContacts);
File.WriteAllText("contacts.json", jsonString);
}
//Sérialisation de ces objets dans un fichier Json
//Donner la possibilité aux utilisteurs d'enregistrer les contacts
//Création d'une méthode qui permet de sauvegrader les contects
//Cette méthode est en static pour que cela soit accessible sans instancier l'objet contects
public static void SaveContacts()
{
string jsonString = JsonSerializer.Serialize(ListContacts);
//Pour l'enregistrement des contacts dans la globalité du projet c'est-à-dire
//ce qui est dans la liste ListContacts
File.WriteAllText("contacts.json", jsonString);
}
//Méthode pour le chargement des contacts
//Cette LoadFromFile doit désérialiser la liste dans le fichier Json
public static void LoadFromFile()
{
if (File.Exists("contacts.json"))
{
string jsonString = File.ReadAllText("contacts.json");
//Supprimer le contenu (anciens contacts) dans la ListContacts
ListContacts.Clear();
ListContacts = JsonSerializer.Deserialize<List<Contacts>>(jsonString);
}
}
}
}