using DTO; using System; using System.Collections.Generic; using System.Text; namespace IServices { public interface IExpertTestTopicService { ResultEntity save(ExpertTestTopicDTO dto); ExpertTestTopicDTO Get(string id); ResultDataEntity SearchByPaging(ExpertTestTopicDTOSearch searchEntity); ResultEntity ModifyStatus(string id, string userid); List GetList(); ResultEntity saveanwser(ExpertTestTopicanwserDTO dto); List GetListanwser(string topicId=""); ResultEntity savejiexi(ExpertTestTopicjiexiDTO dto); List GetListjiexi(string topicId = ""); ResultEntity shenpi(ExpertTestTopicDTO dto); ResultDataEntity SearchByPagingjiexi(ExpertTestTopicDTOSearch searchEntity); ExpertTestTopicjiexiDTO Getjiexi(string id); ResultEntity ModifyStatusjiexi(string id, string userid); List GetListResult(); ResultEntity saveResult(ExpertTestResultDTO dto); ExpertTestResultDTO GetResult(string Resulttype); List GetListpeizhi(); ResultEntity savepeizhi(ExpertTestTopicpeizhiDTO dto); ExpertTestTopicpeizhiDTO Getpeizhi(string Topictype,string Zhishitype); } }