public async Task <ActionResult> GetChildContainersAsync()
        {
            var model = await _containerService
                        .GetChildContainersAsync();

            if (model != null)
            {
                return(Ok(model));
            }

            return(NotFound());
        }