You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WF-PmAPI/WF_EF_Api/Contextlib/DbQuestionSerice.cs

74 lines
1.9 KiB

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<Question>
{
public Task AddQuestion(Question question)
{
throw new NotImplementedException();
}
public Task<int> CountQuestions()
{
throw new NotImplementedException();
}
public Task<PaginationResult<Question>> GetAllQuestion()
{
throw new NotImplementedException();
}
public Task<PaginationResult<Question>> GetInvalidQuestion(int index, int pageSize)
{
throw new NotImplementedException();
}
public Task<Question> GetQuestionById(int id)
{
throw new NotImplementedException();
}
public Task<Question> GetRandomQuestion()
{
throw new NotImplementedException();
}
public Task<Question> GetRandomQuestionQuoteToCharacter()
{
throw new NotImplementedException();
}
public Task<Question> GetRandomQuestionQuoteToSource()
{
throw new NotImplementedException();
}
public Task<PaginationResult<Question>> 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();
}
}
}