add getCompletionById
This commit is contained in:
parent
b4e260998d
commit
0ee41aebef
1 changed files with 1 additions and 0 deletions
|
|
@ -7,5 +7,6 @@ public interface ICompletionService
|
||||||
Task AddCompletionAsync(Completion completion);
|
Task AddCompletionAsync(Completion completion);
|
||||||
Task UpdateCompletionAsync(Completion completion);
|
Task UpdateCompletionAsync(Completion completion);
|
||||||
Task DeleteCompletionAsync(int id);
|
Task DeleteCompletionAsync(int id);
|
||||||
|
Task<Completion> GetCompletionByIdAsync(int id);
|
||||||
Task<IEnumerable<Completion>> GetCompletionsBySurveyIdAsync(int surveyId);
|
Task<IEnumerable<Completion>> GetCompletionsBySurveyIdAsync(int surveyId);
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue