public void MapClientRequestToResponse()
        {
            var mapper = new ApiCountryModelMapper();
            var model  = new ApiCountryClientRequestModel();

            model.SetProperties("A");
            ApiCountryClientResponseModel response = mapper.MapClientRequestToResponse(1, model);

            response.Should().NotBeNull();
            response.Name.Should().Be("A");
        }