using SurveyLib.Core.Models; using SurveyLib.Core.Repositories; namespace SurveyLib.Infrastructure.EFCore.Repositories; public class CompletionRepository : ICompletionRepository { public Task? GetByIdAsync(int id) { throw new NotImplementedException(); } public Task> GetAllAsync() { throw new NotImplementedException(); } public Task AddAsync(Completion entity) { throw new NotImplementedException(); } public Task UpdateAsync(Completion entity) { throw new NotImplementedException(); } public Task DeleteAsync(Completion entity) { throw new NotImplementedException(); } public Task> GetBySurveyIdAsync(int surveyId) { throw new NotImplementedException(); } }