public IActionResult Get(Guid id)
        {
            var res = _organizationAppService.GetById(id);

            if (res == null)
            {
                return(NotFound());
            }

            return(Result(res));
        }