public void MapServerResponseToRequest()
        {
            var mapper = new ApiCustomerServerModelMapper();
            var model  = new ApiCustomerServerResponseModel();

            model.SetProperties(1, "A", "A", "A", "A");
            ApiCustomerServerRequestModel response = mapper.MapServerResponseToRequest(model);

            response.Should().NotBeNull();
            response.Email.Should().Be("A");
            response.FirstName.Should().Be("A");
            response.LastName.Should().Be("A");
            response.Phone.Should().Be("A");
        }