Example #1
0
 public LocationController(IAuthenticationService authenticationService,
                           IDiagnosticService diagnosticService,
                           ILocationService locationService,
                           IRenderViewToString renderViewToString,
                           ICountryOrRegionService countryOrRegionService,
                           IGridConfigService gridConfigService)
     : base(authenticationService, diagnosticService, locationService)
 {
     _gridConfigService      = gridConfigService;
     _locationService        = locationService;
     _renderViewToString     = renderViewToString;
     _countryOrRegionService = countryOrRegionService;
 }
Example #2
0
 public CountryOrRegionController(IAuthenticationService authenticationService, IDiagnosticService diagnosticService,
                                  ICountryOrRegionService countryOrRegionService)
     : base(authenticationService, diagnosticService, countryOrRegionService)
 {
     _countryOrRegionService = countryOrRegionService;
 }