public async Task <IEnumerable <Revision> > GetRevisions([FromRoute] string projectName, [FromRoute] int itemsPerPage, string continuationToken)
 {
     return(await RevisionDataService.GetAllByProjectAsync(projectName, itemsPerPage, continuationToken));
 }
Esempio n. 2
0
 public async Task <IEnumerable <Revision> > GetRevisions([FromRoute] string projectName)
 {
     return(await RevisionDataService.GetAllByProjectAsync(projectName));
 }