using SurveyLib.Core.Models; using SurveyLib.Core.Repositories; using SurveyLib.Infrastructure.EFCore.Data; namespace SurveyLib.Infrastructure.EFCore.Repositories; public class SurveyRepository : ISurveyRepository { private readonly DataContext _context; public SurveyRepository(DataContext context) { _context = context; } public Task? GetByIdAsync(int id) { throw new NotImplementedException(); } public Task> GetAllAsync() { throw new NotImplementedException(); } public Task AddAsync(Survey entity) { throw new NotImplementedException(); } public Task UpdateAsync(Survey entity) { throw new NotImplementedException(); } public Task DeleteAsync(Survey entity) { throw new NotImplementedException(); } public Task GetWithQuestionsAsync(int surveyId) { throw new NotImplementedException(); } public Task GetWithCompletionsAsync(int surveyId) { throw new NotImplementedException(); } public Task FindByTitleAsync(string title) { throw new NotImplementedException(); } }