예제 #1
0
 public RegistrationFacade(RegisterCourse registerCourse, NotifyStudent notifyStudent)
 {
     _registerCourse = registerCourse;
     _notifyStudent  = notifyStudent;
 }
예제 #2
0
파일: Program.cs 프로젝트: yojan126/Learn
 public RegistrationFacade()
 {
     registerCourse = new RegisterCourse();
     notifyStudent  = new NotifyStudent();
 }