username@email.com
2023-12-14 78b0883ddf8329fa8693d78b01e1e0a7f5b6972e
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
using DTO;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace IServices
{
    public interface IExpertService
    {
        ResultEntity save(ExpertDTO expertDTO);
 
        ExpertDTO Get(string id);
 
        ResultDataEntity<ExpertDTO> SearchByPaging(ExpertDTOSearch searchEntity);
 
        ResultEntity ModifyStatus(string id, string userid);
 
        List<ExpertDTO> GetList(string[] id = null);
 
        ResultEntity SaveExpPromote(ExpertPromoteDTO expertPromoteDTO);
 
        ResultDataEntity<ExpertPromoteDTO> SearchExpPromote(ExpertPromoteDTOSearch searchEntity);
        ResultDataEntity<ExpertOrderDipatchDTO> SearchOrderDispatch(ExpertOrderDipatchDTOSearch searchEntity);
        ResultEntity SaveDispatch(ExpertOrderDipatchDTO dipatchDTO);
 
 
        ResultDataEntity<ExpertOrderDipatchDTO> SearchJiesuan(ExpertOrderDipatchDTOSearch searchEntity);
 
 
        ExpertOrderDipatchDTO GetDispatch(string id);
 
 
        ResultEntity IdCardChongfu(string IdCard = "", string Id = "");
 
        ResultEntity CertiNumberChongfu(string CertiNumber = "", string Id = "");
 
        ResultEntity Phone1Chongfu(string Phone1 = "", string Id = "");
 
        List<ExpertDTO> GetListsalary(string userid, DateTime datemin, DateTime datemax);
 
    }
}