public async Task <ActionResult> MakeEventLive(Guid eventId)
        {
            var result = _eventManagementService.MakeEventLive(eventId);

            return(RedirectToAction("MyEvents"));
        }