示例#1
0
        /// <summary>
        /// 모델 초기화 및 모달 폼 닫기
        /// </summary>
        protected async void CreateOrEdit()
        {
            EditorFormReference.Hide();
            this.model = null;
            this.model = new DepartmentModel();

            await DisplayData();

            //NavigationManagerInjector.NavigateTo($"/Departments", true);
        }
示例#2
0
 protected async void CreateOrEdit()
 {
     EditorFormReference.Hide();
     await DisplayData();
 }
示例#3
0
 /// <summary>
 /// 모델 초기화 및 모달 폼 닫기
 /// </summary>
 protected async void CreateOrEdit()
 {
     EditorFormReference.Hide();
     this.model = new Archive();
     await DisplayData();
 }