public void AddContact(string name, string number)
 {
     _contacts.Add(new Contact(name, number));
     StoreContact.saveObjectToFile(_contacts);
 }
 public ContactManager()
 {
     _contacts = StoreContact.getObjectFromFile();
 }