private void OpenRegistration() { if (this.SelectedLesson == null) { return; } _currentHost.AddPageAsync(new RegistrationPageToken("Регистрация", this.SelectedLesson.Lesson)); }
private void ShowDiscipline() { _host.AddPageAsync <DisciplineFormModule, DisciplineFormToken>( new DisciplineFormToken(this.SelectedDiscipline.Name, this.SelectedDiscipline)); }
private void ShowStream() { _host.AddPageAsync(new StreamFormToken("Поток", this.SelectedStream)); }
private void ShowGroup() { _host.AddPageAsync <GroupFormModule, GroupFormToken>( new GroupFormToken(this.SelectedGroupEntity.Name, this.SelectedGroupEntity)); }
private void ShowDepartment() { _host.AddPageAsync( new DepartmentFormToken(this.SelectedDepartment.Name, this.SelectedDepartment)); }