using SurveyBackend.Core.Repositories; using SurveyLib.Core.Models; using SurveyLib.Core.Repositories; using SurveyLib.Core.Services; namespace SurveyBackend.Services.Services; public class SurveyService : ISurveyService { private readonly ISurveyRepository _surveyRepository; public SurveyService(ISurveyRepository surveyRepository) { _surveyRepository = surveyRepository; } public async Task AddSurveyAsync(Survey survey) { throw new NotImplementedException(); } public async Task UpdateSurveyAsync(Survey survey) { throw new NotImplementedException(); } public async Task DeleteSurveyAsync(int id) { throw new NotImplementedException(); } public async Task> GetSurveysAsync() { throw new NotImplementedException(); } public async Task GetSurveyAsync(int id) { throw new NotImplementedException(); } public async Task> GetSurveysByUserIdAsync(int userId) { throw new NotImplementedException(); } }