private void CreateNotificationTypes() { var notificationTypes = new List <NotificationType> { new NotificationType(Guid.NewGuid(), "Sangue", "Notificações de sangue"), new NotificationType(Guid.NewGuid(), "Cabelo", "Notificações de cabelo"), new NotificationType(Guid.NewGuid(), "Leite materno", "Notificações de leite materno") }; foreach (var notificationType in notificationTypes) { _context.NotificationTypes.Add(notificationType); } _context.SaveChanges(); }
public int SaveChanges() { return(Db.SaveChanges()); }
public bool Commit() { return(_context.SaveChanges() > 0); }