Exemple #1
0
 public GiftsRequest(INetService netService,
                     string url,
                     INetErrorFactory errorFactory, IResourceService resourceService) :
     base(netService, url, errorFactory)
 {
     this.resourceService = resourceService;
 }
Exemple #2
0
 public BaseRequest(INetService netService, string url, INetErrorFactory errorFactory)
 {
     this.netService   = netService;
     this.url          = url;
     this.errorFactory = errorFactory;
 }