Exemplo n.º 1
0
 public void Save()
 {
     ProfileHandler.SaveProfiles(this);
 }
Exemplo n.º 2
0
 public List <Profile> GetProfiles()
 {
     return(ProfileHandler.GetProfiles(this));
 }
Exemplo n.º 3
0
 public void Delete(string name)
 {
     ProfileHandler.DeleteProfile(this, name, true);
 }
Exemplo n.º 4
0
 public Profile GetByName(string name)
 {
     return(ProfileHandler.GetProfileByName(this, name));
 }
Exemplo n.º 5
0
 public bool Exists(string name)
 {
     return(ProfileHandler.ProfileExists(this, name));
 }