public async Task <IActionResult> Get(Guid id)
        {
            var events = await _services.GetAsync(id);

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

            return(new JsonResult(events));
        }