コード例 #1
0
 public exam_pool Add(exam_pool item)
 {
     if (item != null)
     {
         exams.Add(item);
     }
     return item;
     //throw new NotImplementedException();
 }
コード例 #2
0
        public exam_pool Add(exam_pool item)
        {
            if (item == null)
            {

            }
            exams.Add(item);
            return item;
        }
コード例 #3
0
 public bool Update(exam_pool item)
 {
     throw new NotImplementedException();
 }