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