markus / ConvertService / ServiceBase / Markus.Service.WcfService / StationService.cs @ 1d79913e
이력 | 보기 | 이력해설 | 다운로드 (2.19 KB)
1 | 53c9637d | taeseongkim | 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 | 60723dc9 | taeseongkim | [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, IncludeExceptionDetailInFaults = false)] |
16 | 53c9637d | taeseongkim | 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 | 1d79913e | taeseongkim | public string PassConvert(string ProjectNo, string ConvertID) |
55 | { |
||
56 | throw new NotImplementedException(); |
||
57 | } |
||
58 | |||
59 | 06f13e11 | taeseongkim | public bool ReleaseConvertItems() |
60 | { |
||
61 | throw new NotImplementedException(); |
||
62 | } |
||
63 | |||
64 | 53c9637d | taeseongkim | public bool SaveSettingsSettingMultiProcess(int Value) |
65 | { |
||
66 | throw new NotImplementedException(); |
||
67 | } |
||
68 | |||
69 | public bool SettingMultiProcess(int Value) |
||
70 | { |
||
71 | throw new NotImplementedException(); |
||
72 | } |
||
73 | |||
74 | public List<ConvertItem> WaitConvertList() |
||
75 | { |
||
76 | throw new NotImplementedException(); |
||
77 | } |
||
78 | } |
||
79 | } |