예제 #1
0
 public Student Add(Student student)
 {
     try
     {
         FileManager.AddStudent(student);
     }
     catch (CustomException e)
     {
         Log.Error(e.Message);
         Log.Error(e.StackTrace);
         throw;
     }
     return(student);
 }