adapt repository features to services needs

This commit is contained in:
Вячеслав 2025-05-26 01:02:06 +05:00
parent 3961dbeb69
commit 9f6d5b575e
4 changed files with 18 additions and 1 deletions

View file

@ -4,5 +4,5 @@ namespace SurveyLib.Core.Repositories;
public interface ICompletionRepository : IGenericRepository<Completion>
{
Task<IEnumerable<Completion>> GetCompletionsBySurveyIdAsync(int surveyId);
}