public exam_pool Add(exam_pool item)
 {
     if (item != null)
     {
         exams.Add(item);
     }
     return item;
     //throw new NotImplementedException();
 }
        public exam_pool Add(exam_pool item)
        {
            if (item == null)
            {

            }
            exams.Add(item);
            return item;
        }
 public bool Update(exam_pool item)
 {
     throw new NotImplementedException();
 }