コード例 #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();
 }