public async void GetTest()
        {
            // Arrange
            var mockLogManager           = new Mock <ILogManager>();
            var mockAuditEventRepository = new Mock <IAuditEventRepository>();
            var mockAuditEvent           = new Mock <IAuditEvent>();

            // Setup mock methods/properties
            mockAuditEvent.Setup(c => c.Id).Returns(It.IsAny <int>());
            mockAuditEventRepository.Setup(x => x.GetByIdAsync(It.IsAny <int>()))
            .Returns(Task.FromResult(new GetResponse <IAuditEvent> {
                Message = "Successful."
            }));

            // Act
            var sut = new AuditEventApplicationService(
                mockLogManager.Object, mockAuditEventRepository.Object);
            var response = await sut.GetAsync(It.IsAny <int>());

            // Assert
            response.IsSuccessful.Should().BeTrue();
            response.Errors.Count.Should().Be(0);
            response.Message.Should().NotBeNullOrEmpty();

            // Verify the application service is calling the correct repository method.
            mockAuditEventRepository.Verify(x => x.GetByIdAsync(It.IsAny <int>()));
        }
        public async void GetErrorTest()
        {
            // Arrange
            var mockLogManager           = new Mock <ILogManager>();
            var mockAuditEventRepository = new Mock <IAuditEventRepository>();
            var mockAuditEvent           = new Mock <IAuditEvent>();

            // Setup mock methods/properties
            mockAuditEventRepository.Setup(x => x.GetByIdAsync(It.IsAny <int>()))
            .Throws(new Exception());
            mockAuditEvent.Setup(c => c.Id).Returns(It.IsAny <int>());

            // Act
            var sut = new AuditEventApplicationService(
                mockLogManager.Object, mockAuditEventRepository.Object);
            var response = await sut.GetAsync(It.IsAny <int>());

            // Assert
            response.IsSuccessful.Should().BeFalse();
            response.Errors.Count.Should().BeGreaterThan(0);
            response.Message.Should().NotBeNullOrEmpty();

            // Verify the application service is calling the correct repository method.
            mockAuditEventRepository.Verify(x => x.GetByIdAsync(It.IsAny <int>()));

            // Verify the application service is logging the error.
            mockLogManager.Verify(x => x.LogError(It.IsAny <Exception>(), It.IsAny <string>()));
        }