Пример #1
0
 public void Add(Goal entity)
 {
     using (ExaminationContext db = new ExaminationContext())
     {
         db.Goals.Add(entity);
         db.SaveChanges();
     }
 }
Пример #2
0
 public void Delete(Goal entity)
 {
     using (ExaminationContext db = new ExaminationContext())
     {
         var goal = GetById(entity.Id);
         db.Goals.Remove(goal);
         db.SaveChanges();
     }
 }