예제 #1
0
 public LocationService(
     ICustomerProfileClient customerProfileClient,
     ILogFactory logFactory,
     ILocationRepository locationRepository,
     IGeocodingReader geocodingReader)
 {
     _customerProfileClient = customerProfileClient;
     _geocodingReader       = geocodingReader;
     _locationRepository    = locationRepository;
     _log = logFactory.CreateLog(this);
 }