username@email.com
2024-07-09 38f88a13e2d7ba9dc80126245339505aab2e9fd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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);
 
    }
}