프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / ConvertService / ServiceBase / Markus.Service.WcfService / StationService.cs @ c6bf88fd

이력 | 보기 | 이력해설 | 다운로드 (2.06 KB)

1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Runtime.Serialization;
5
using System.ServiceModel;
6
using System.ServiceModel.Activation;
7
using System.Text;
8
using Markus.Message;
9
using Markus.Service.Interface;
10

    
11
namespace Markus.Service.IWcfService
12
{
13

    
14
    [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
15
    [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, IncludeExceptionDetailInFaults = false)]
16
    public class StationService : IStationService
17
    {
18
        public List<ConvertItem> AliveConvertList()
19
        {
20
            throw new NotImplementedException();
21
        }
22

    
23
        public string ConvertAdd(string ProjectNo, string ConvertID)
24
        {
25
            throw new NotImplementedException();
26
        }
27

    
28
        public bool ConvertFinish(string ConvertID, int status, int CurrentPage, int TotalPage, string Error)
29
        {
30
            throw new NotImplementedException();
31
        }
32

    
33
        public List<ConvertItem> ConvertList()
34
        {
35
            throw new NotImplementedException();
36
        }
37

    
38
        public string ConvertMenualAdd(string ProjectNo, string originfilePath, string DocumentID)
39
        {
40
            throw new NotImplementedException();
41
        }
42

    
43
        public bool ConvertProcessState(string ConvertID, int status, int CurrentPage, int TotalPage, string Error)
44
        {
45
            throw new NotImplementedException();
46
        }
47

    
48

    
49
        public Item GetConvertItem(string ProjectNo, string DocumentID)
50
        {
51
            throw new NotImplementedException();
52
        }
53

    
54
        public bool ReleaseConvertItems()
55
        {
56
            throw new NotImplementedException();
57
        }
58

    
59
        public bool SaveSettingsSettingMultiProcess(int Value)
60
        {
61
            throw new NotImplementedException();
62
        }
63

    
64
        public bool SettingMultiProcess(int Value)
65
        {
66
            throw new NotImplementedException();
67
        }
68

    
69
        public List<ConvertItem> WaitConvertList()
70
        {
71
            throw new NotImplementedException();
72
        }
73
    }
74
}
클립보드 이미지 추가 (최대 크기: 500 MB)