예제 #1
0
파일: Student.cs 프로젝트: Ideal2014/Ideal
 void IBLL.IStudent.Modify(StudentInfo student)
 {
     if (student == null)
     {
         throw new Exception();
     }
     dal.Modify(student);
 }