public void CreatePatch()
        {
            var mapper = new ApiDestinationServerModelMapper();
            var model  = new ApiDestinationServerRequestModel();

            model.SetProperties(1, "A", 1);

            JsonPatchDocument <ApiDestinationServerRequestModel> patch = mapper.CreatePatch(model);
            var response = new ApiDestinationServerRequestModel();

            patch.ApplyTo(response);
            response.CountryId.Should().Be(1);
            response.Name.Should().Be("A");
            response.Order.Should().Be(1);
        }