Exemplo n.º 1
0
 public int AddNewuser(tblUser user, tblUserStation tsu)
 {
     db.tblUsers.Add(user);
     db.tblUserStations.Add(tsu);
     return(db.SaveChanges());
 }
Exemplo n.º 2
0
 public int AddEmailNotification(tblEmailNotification notification)
 {
     db.tblEmailNotifications.Add(notification);
     return(db.SaveChanges());
 }