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