示例#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();
 }