Пример #1
0
        public RegisterForm()
        {
            InitializeComponent();

            DynamicUIControlsHandler.FillEducationLevels(educationLevelCB);
            DynamicUIControlsHandler.FillRoles(roleCB);
        }
Пример #2
0
        public ProfileForm(Account account, UI.StartPage st)
        {
            InitializeComponent();

            DynamicUIControlsHandler.FillEducationLevels(educationLevelCB);
            DynamicUIControlsHandler.FillRoles(roleCB);

            this.Account = account;
            this.st      = st;
            SetAccountData();
            UpdatedSuccessfully = false;
        }