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<ExpertTestTopicDTO> SearchByPaging(ExpertTestTopicDTOSearch searchEntity);
|
|
ResultEntity ModifyStatus(string id, string userid);
|
|
List<ExpertTestTopicDTO> GetList();
|
|
ResultEntity saveanwser(ExpertTestTopicanwserDTO dto);
|
|
List<ExpertTestTopicanwserDTO> GetListanwser(string topicId="");
|
|
ResultEntity savejiexi(ExpertTestTopicjiexiDTO dto);
|
|
List<ExpertTestTopicjiexiDTO> GetListjiexi(string topicId = "");
|
|
ResultEntity shenpi(ExpertTestTopicDTO dto);
|
|
ResultDataEntity<ExpertTestTopicjiexiDTO> SearchByPagingjiexi(ExpertTestTopicDTOSearch searchEntity);
|
|
ExpertTestTopicjiexiDTO Getjiexi(string id);
|
|
ResultEntity ModifyStatusjiexi(string id, string userid);
|
|
List<ExpertTestResultDTO> GetListResult();
|
ResultEntity saveResult(ExpertTestResultDTO dto);
|
ExpertTestResultDTO GetResult(string Resulttype);
|
|
List<ExpertTestTopicpeizhiDTO> GetListpeizhi();
|
ResultEntity savepeizhi(ExpertTestTopicpeizhiDTO dto);
|
ExpertTestTopicpeizhiDTO Getpeizhi(string Topictype,string Zhishitype);
|
|
}
|
}
|