public async Task <ActionResult> GetToCommunity(Guid id)
        {
            var model = await _containerService
                        .GetToCommunityAsync(id);

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

            return(NotFound());
        }