示例#1
0
 public SnapshotPaginationProvider(IFhirStore fhirStore, ITransfer transfer, ILocalhost localhost, ISnapshotPaginationCalculator snapshotPaginationCalculator)
 {
     this.fhirStore = fhirStore;
     this.transfer  = transfer;
     this.localhost = localhost;
     _snapshotPaginationCalculator = snapshotPaginationCalculator;
 }
示例#2
0
 public SnapshotPaginationService(
     IFhirStore fhirStore,
     ITransfer transfer,
     ILocalhost localhost,
     ISnapshotPaginationCalculator snapshotPaginationCalculator,
     Snapshot snapshot)
 {
     _fhirStore = fhirStore;
     _transfer  = transfer;
     _localhost = localhost;
     _snapshotPaginationCalculator = snapshotPaginationCalculator;
     _snapshot = snapshot;
 }