username@email.com
2021-10-14 1c4f3bce3d88557b7ddb5f0a49b4be5e91b416f1
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
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);
 
        List<ExpertTestTopicpeizhiDTO> GetListpeizhi();
        ResultEntity savepeizhi(ExpertTestTopicpeizhiDTO dto);
 
    }
}