public async Task <IActionResult> GetAll()
        {
            var entity = await _SectionsService.GetAll();

            if (entity == null)
            {
                return(NoContent());
            }

            return(Ok(entity));
        }