public CustomerServiceApiClient(string customerServiceApiUrl)
 {
     _client = RestClient.For <ICustomerServiceApi>(customerServiceApiUrl);
 }
 public ShelteredDepthsDataFactory(ICustomerServiceApi api)
 {
     Api = api;
 }
示例#3
0
 public LiveCustomerDataFactory(ICustomerServiceApi api)
 {
     Api = api;
 }