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 { /// /// ITest_QuestionInfoServices /// public interface ITest_QuestionInfoServices : IBaseServices { Task> GetQuestion(appQuestionQuery query); Task> GetQuestionMBTI(); } }