Exemple #1
0
        public Tutor(int userId)
        {
            _tutorTableAdapter = new TUTORTableAdapter {
                ClearBeforeFill = true
            };
            InitializeComponent();
            CreateTimer();

            _tutorData           = _tutorTableAdapter.GetData().FindBytutor_id(userId);
            LblTutorName.Content = String.Format("{0} {1} {2}", _tutorData.tutor_firstname, _tutorData.tutor_lastname, userId);
        }