Beispiel #1
0
        public async Task <IActionResult> DeleteExecutionInfos(GridSelection selection)
        {
            var numDeleted = await _taskStore.DeleteExecutionInfosByIdsAsync(selection.GetEntityIds());

            return(Json(new { Success = true, Count = numDeleted }));
        }