示例#1
0
        public async Task <IActionResult> OnPostAsync()
        {
            await reunioesClient.AtasAssuntosPutAsync(ReuniaoId, AtaId, AssuntoId, ReunioesAtasAssuntosPut);

            FeedbackSuccess = $"O assunto da ata de reunião foi atualizado com êxito.";

            return(new JsonResult(
                       new
            {
                returnUrl = Url.Page("/Reunioes/Detalhar", new { id = ReuniaoId })
            }));
        }