Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     Repository<Student> repo = new Repository<Student>();
     Validator val = new Validator(repo);
     StudentController ctrl = new StudentController(repo, val);
     UI.Console cons = new UI.Console(ctrl);
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            Repository <Student> repo = new Repository <Student>();
            Validator            val  = new Validator(repo);
            StudentController    ctrl = new StudentController(repo, val);

            UI.Console cons = new UI.Console(ctrl);
        }