public CountryCallingCodesController(ICountryCallingCodeService countryCallingCodeService)
 {
     _countryCallingCodeService = countryCallingCodeService;
 }
 public CountryCallingCodesControllerTest()
 {
     _service    = new CountryCallingCodeServiceFake();
     _controller = new CountryCallingCodesController(_service);
 }