Пример #1
0
 public void Update(ProfileDTO profile)
 {
     Database.Profiles.Update(profile.ToProfile());
 }
Пример #2
0
 public void CreateNewProfile(ProfileDTO newProfile)
 {
     Database.Profiles.Create(newProfile.ToProfile());
     Database.Save();
 }