private void LoadProfile()
 {
     Profile = new Profile();
     Console.WriteLine("Profile Loaded");
 }
 public void Enroll(ClientDetails clientDetails)
 {
     Profile = Profile.CreateProfile(clientDetails);
 }