示例#1
0
 public InspectJob(
     ISsrsObjectSource source,
     SsrsObjectFilter filter
     )
 {
     this.source = source ?? throw new ArgumentNullException(nameof(source));
     this.filter = filter ?? throw new ArgumentNullException(nameof(filter));
 }
示例#2
0
 public ImportJob(
     IReportingServiceClient service,
     ISsrsObjectSource source,
     SsrsObjectFilter filter
     )
 {
     this.service = service ?? throw new ArgumentNullException(nameof(service));
     this.source  = source ?? throw new ArgumentNullException(nameof(source));
     this.filter  = filter ?? throw new ArgumentNullException(nameof(filter));
 }
 public void Add(ISsrsObjectSource source) => sources.Add(source);