Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Student model = retriveStudentFromDatabase(); // Data Set Value

            StudentView view = new StudentView();         //

            StudentController controller = new StudentController(model, view);

            controller.updateView();

            controller.setStudentName("Vikram Sharma");

            controller.updateView();
        }
 public StudentController(Student model, StudentView view)
 {
     this.model = model;
     this.view  = view;
 }