public async Task Should_Cancel_Event()
        {
            //Act
            await _eventAppService.CancelAsync(new EntityDto <Guid>(GetTestEvent().Id));

            //Assert
            GetTestEvent().IsCancelled.ShouldBeTrue();
        }