public GetCountryResponse GetCountry(GetCountryRequest request)
        {
            CountryView view = new CountryView(ObjectFactory.Create<IReadModelStore>());
            CountryDto dto = view.Load(request.CountryId);
            GetCountryResponse response = new GetCountryResponse();
            response.Country = dto;
            return response;

        }