Пример #1
0
        protected async void FormSubmit()
        {
            int.TryParse(ParentId, out int parentId);
            model.ParentId = parentId;
            await NoticeRepositoryAsyncReference.AddAsync(model);

            NavigationManagerReference.NavigateTo("/Notices");
        }
Пример #2
0
        protected async void FormSubmit()
        {
            int.TryParse(ParentId, out int parentId);
            model.ParentId = parentId;
            await NoticeRepositoryAsyncReference.AddAsync(model);

            //Socketlabs.SendMessage(model.Title, model.Content, "");     // 전체메일 발송

            NavigationManagerReference.NavigateTo("/Boards/Notices");
        }
Пример #3
0
        protected async void FormSubmit()
        {
            await NoticeRepositoryAsyncReference.AddAsync(model);

            NavigationManagerReference.NavigateTo("/Notices");
        }