コード例 #1
0
 public void Put(int lessonCode)
 {
     try
     {
         Lesson l = new Lesson();
         l.EndLesson(lessonCode);
     }
     catch (Exception ex)
     {
         throw new Exception("Error in start Lesson" + ex);
     }
 }