示例#1
0
文件: Program.cs 项目: csergiu/Labs
 static void Main(string[] args)
 {
     StudentRepository repo = new StudentRepository(100);
     Validator val = new Validator(repo);
     StudentController ctrl = new StudentController(repo, val);
     UI.Console cons = new UI.Console(ctrl);
     cons.run();
 }
示例#2
0
文件: Console.cs 项目: csergiu/Labs
 public Console(StudentController ctrl)
 {
     this.ctrl = ctrl;
 }