コード例 #1
0
ファイル: DashboardController.cs プロジェクト: RSadocchi/eGym
        public async Task <IActionResult> TodoChangeStatus(int todoId, short statusId)
        {
            var success = await _todoService.ChangeStatusAsync(todoId : todoId, statusId : statusId);

            return(Ok(new { success }));
        }