18 lines
501 B
C#
18 lines
501 B
C#
using New_College.IServices.BASE;
|
|
using New_College.Model.Models;
|
|
using New_College.Model.ViewModels;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.IServices
|
|
{
|
|
/// <summary>
|
|
/// ITest_QuestionInfoServices
|
|
/// </summary>
|
|
public interface ITest_QuestionInfoServices : IBaseServices<Test_QuestionInfo>
|
|
{
|
|
Task<List<appQuestionResult>> GetQuestion(appQuestionQuery query);
|
|
|
|
Task<List<QuestionMBTI>> GetQuestionMBTI();
|
|
}
|
|
} |