コード例 #1
0
 public async Task <IEnumerable <Restore> > Get()
 {
     return(await _restoreService.GetAllRestorsAsync());
 }
コード例 #2
0
 public Task<IEnumerable<Restore>> Get(Guid connectionId)
 {
     return _restoreService.GetAllRestorsAsync(connectionId);
 }