コード例 #1
0
        protected override async Task OnInitializedAsync()
        {
            doctorUI = new DoctorUI(DoctorDataService);
            Doctors  = await doctorUI.GetList();

            messageUI = new MessageUI(MessageDataService, mapper, UserName);
            ResetDialog();
        }
コード例 #2
0
ファイル: ApptDialogBase.cs プロジェクト: bek15071991/Dental
        protected override async Task OnInitializedAsync()
        {
            scheduleUI    = new ScheduleUI(ScheduleDataService, AppointmentDataService);
            doctorUI      = new DoctorUI(DoctorDataService);
            queryParamsVM = scheduleUI.New();
            Doctors       = await doctorUI.GetList();

            ResetDialog();
        }