public async Task RequeueSnapshots([FromBody] SnapshotLookup request)
 {
     await((SnapShotRepository)snapshotRepository).RequeueSnapshots(request);
 }
 public async Task <IEnumerable <Snapshot> > LookupSnapshot([FromBody] SnapshotLookup request)
 {
     return(await(snapshotRepository.Lookup(request)));
 }