public async Task <IActionResult> Detach(Guid sectionId, Guid reportId) { await _sectionService.DetachAsync(sectionId, reportId); return(Ok($"Report with id='{reportId}' was successfully detached from section with id='{sectionId}'")); }