//Internal constructor for unit testing purposes
 internal SharePointConnector(IJsonWebClient jsonWebClient)
 {
     this._jsonWebClient = jsonWebClient;
 }
Ejemplo n.º 2
0
 public ConcreteClient(IMapper mapper, IJsonWebClient webClient)
 {
     _mapper = mapper;
     _client = webClient;
 }