Esempio n. 1
0
 public void Save(PasswordEntry passwordEntry)
 {
     using var context = new SoPContext();
     context.Update(passwordEntry);
     context.SaveChanges();
 }
Esempio n. 2
0
 public void Save(Category category)
 {
     using var context = new SoPContext();
     context.Update(category);
     context.SaveChanges();
 }