Beispiel #1
0
        public async Task <IActionResult> Attach(Guid sectionId, Guid reportId)
        {
            await _sectionService.AttachAsync(sectionId, reportId);

            return(Ok($"Report with id='{reportId}' was successfully attached to section with id='{sectionId}'"));
        }