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();
        }
コード例 #2
0
 public int SaveChanges()
 {
     return(Db.SaveChanges());
 }
コード例 #3
0
 public bool Commit()
 {
     return(_context.SaveChanges() > 0);
 }