Example #1
0
 public MobilePhonesApiHelper(IOptions <ApiOptions> options, IManufacturerApiHelper apiManufHelper)
 {
     _options        = options.Value;
     _apiManufHelper = apiManufHelper;
 }
 public MobilePhoneController(IMobilePhoneApiHelper apiHelper, IManufacturerApiHelper manufHelper, PhoneSearchClient phoneSearchClient)
 {
     _apiHelper         = apiHelper;
     _manufHelper       = manufHelper;
     _phoneSearchClient = phoneSearchClient;
 }