예제 #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
        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();
        }