Ejemplo n.º 1
0
 public int Add(Password pwd)
 {
     _db.Passwords.Add(pwd);
     return(_db.SaveChanges());
 }
Ejemplo n.º 2
0
 public int Add(Note note)
 {
     _db.Entry(note).State = EntityState.Added;
     return(_db.SaveChanges());
 }
Ejemplo n.º 3
0
 public int Add(User user)
 {
     // _db.Users.Add(user);
     _db.Entry(user).State = EntityState.Added;
     return(_db.SaveChanges());
 }