9 lines
No EOL
271 B
C#
9 lines
No EOL
271 B
C#
using SurveyLib.Core.Models;
|
|
|
|
namespace SurveyLib.Core.Repositories;
|
|
|
|
public interface IAnswerRepository : IGenericRepository<Answer>
|
|
{
|
|
Task<IEnumerable<Answer>> GetByAttemptIdAsync(int attemptId);
|
|
Task<IEnumerable<Answer>> GetByQuestionIdAsync(int questionId);
|
|
} |