Esempio n. 1
0
 public ScopeUploadService(IRestApiClient client,
                           IVariablesKeeper keeper,
                           ICommonActions <Dealer> dbDealer,
                           ICommonActions <Country> dbCountry,
                           ICommonActions <Car> dbCar,
                           ICommonActions <CarHistory> dbCarHistory,
                           ICommonActions <CarPhotoLink> dbCarPhotoLink)
 {
     _client         = client;
     _keeper         = keeper;
     _dbDealer       = dbDealer;
     _dbCountry      = dbCountry;
     _dbCarHistory   = dbCarHistory;
     _dbCar          = dbCar;
     _dbCarPhotoLink = dbCarPhotoLink;
 }
 public RestApiClient(IOptions <RestApiConfig> options, IVariablesKeeper keeper)
 {
     _options = options;
     _keeper  = keeper;
 }