public async void Create_Errors()
        {
            PersonTypeControllerMockFacade mock = new PersonTypeControllerMockFacade();

            var mockResponse = new Mock <CreateResponse <ApiPersonTypeServerResponseModel> >(null as ApiPersonTypeServerResponseModel);
            var mockRecord   = new ApiPersonTypeServerResponseModel();

            mockResponse.SetupGet(x => x.Success).Returns(false);

            mock.ServiceMock.Setup(x => x.Create(It.IsAny <ApiPersonTypeServerRequestModel>())).Returns(Task.FromResult <CreateResponse <ApiPersonTypeServerResponseModel> >(mockResponse.Object));
            PersonTypeController controller = new PersonTypeController(mock.ApiSettingsMoc.Object, mock.LoggerMock.Object, mock.TransactionCoordinatorMock.Object, mock.ServiceMock.Object, mock.ModelMapperMock.Object);

            controller.ControllerContext             = new ControllerContext();
            controller.ControllerContext.HttpContext = new DefaultHttpContext();

            IActionResult response = await controller.Create(new ApiPersonTypeServerRequestModel());

            response.Should().BeOfType <ObjectResult>();
            (response as ObjectResult).StatusCode.Should().Be((int)HttpStatusCode.UnprocessableEntity);
            mock.ServiceMock.Verify(x => x.Create(It.IsAny <ApiPersonTypeServerRequestModel>()));
        }
        public async void Create_No_Errors()
        {
            PersonTypeControllerMockFacade mock = new PersonTypeControllerMockFacade();

            var mockResponse = ValidationResponseFactory <ApiPersonTypeServerResponseModel> .CreateResponse(null as ApiPersonTypeServerResponseModel);

            mockResponse.SetRecord(new ApiPersonTypeServerResponseModel());
            mock.ServiceMock.Setup(x => x.Create(It.IsAny <ApiPersonTypeServerRequestModel>())).Returns(Task.FromResult <CreateResponse <ApiPersonTypeServerResponseModel> >(mockResponse));
            PersonTypeController controller = new PersonTypeController(mock.ApiSettingsMoc.Object, mock.LoggerMock.Object, mock.TransactionCoordinatorMock.Object, mock.ServiceMock.Object, mock.ModelMapperMock.Object);

            controller.ControllerContext             = new ControllerContext();
            controller.ControllerContext.HttpContext = new DefaultHttpContext();

            IActionResult response = await controller.Create(new ApiPersonTypeServerRequestModel());

            response.Should().BeOfType <CreatedResult>();
            (response as CreatedResult).StatusCode.Should().Be((int)HttpStatusCode.Created);
            var createResponse = (response as CreatedResult).Value as CreateResponse <ApiPersonTypeServerResponseModel>;

            createResponse.Record.Should().NotBeNull();
            mock.ServiceMock.Verify(x => x.Create(It.IsAny <ApiPersonTypeServerRequestModel>()));
        }