using Entity; using Shared; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Contextlib { public class DbQuestionSerice : IQuestionService { public Task AddQuestion(Question question) { throw new NotImplementedException(); } public Task CountQuestions() { throw new NotImplementedException(); } public Task> GetAllQuestion() { throw new NotImplementedException(); } public Task> GetInvalidQuestion(int index, int pageSize) { throw new NotImplementedException(); } public Task GetQuestionById(int id) { throw new NotImplementedException(); } public Task GetRandomQuestion() { throw new NotImplementedException(); } public Task GetRandomQuestionQuoteToCharacter() { throw new NotImplementedException(); } public Task GetRandomQuestionQuoteToSource() { throw new NotImplementedException(); } public Task> GetSomeQuestion(int index, int pageSize) { throw new NotImplementedException(); } public Task RemoveQuestion(int id) { throw new NotImplementedException(); } public Task UpdateQuestion(int id, Question question) { throw new NotImplementedException(); } public Task ValidateQuestion(int id, bool isvalid) { throw new NotImplementedException(); } } }