public RegistrationSaga(
     IClientRegulationService clientRegulationService,
     IIpGeoLocationClient geoLocationClient,
     ILogFactory logFactory)
 {
     _clientRegulationService = clientRegulationService;
     _geoLocationClient       = geoLocationClient;
     _log = logFactory.CreateLog(this);
 }
 public ClientRegulationController(IClientRegulationService clientRegulationService, ILogFactory logFactory)
 {
     _clientRegulationService = clientRegulationService;
     _log = logFactory.CreateLog(this);
 }