コード例 #1
0
ファイル: Program.cs プロジェクト: csergiu/Labs
 static void Main(string[] args)
 {
     Repository<Student> repo = new Repository<Student>();
     Validator val = new Validator(repo);
     Controller.Controller ctrl = new Controller.Controller(repo, val);
     UI.Console cons = new UI.Console(ctrl);
 }
コード例 #2
0
        static void Main(string[] args)
        {
            Repository <Student> repo = new Repository <Student>();
            Validator            val  = new Validator(repo);

            Controller.Controller ctrl = new Controller.Controller(repo, val);
            UI.Console            cons = new UI.Console(ctrl);
        }