public void RemoveTest()
        {
            var eventDate = new TestEventDate().Date;
            var user      = new TestUser().User;

            Assert.DoesNotThrowAsync(() => _eventDateUserLogic.Remove(eventDate.Uuid, user));
        }
        public async Task <ActionResult> UnsubscribeFromEventDate(Guid uuid)
        {
            try
            {
                UserHelper requestingUser = _controllerHelper.GetRequestingUser(this);
                await _eventDateUserLogic.Remove(uuid, requestingUser);

                return(Ok());
            }
            catch (NoNullAllowedException)
            {
                return(NotFound());
            }
            catch (Exception e)
            {
                _logLogic.Log(e);
                return(StatusCode(StatusCodes.Status500InternalServerError));
            }
        }