コード例 #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
ファイル: StudentController.cs プロジェクト: csergiu/Labs
 public StudentController(StudentRepository repo, Validator val)
 {
     this.repo = repo;
     this.val = val;
 }