public void Update(Entity.NotificationLevel NotificationLevel)
 {
     _context.Entry(NotificationLevel).State = EntityState.Modified;
 }
 public void Insert(Entity.NotificationLevel NotificationLevel)
 {
     _context.Entry(NotificationLevel).State = EntityState.Added;
 }