markus / ConvertService / ServiceBase / Markus.Service.WcfService / StationService.cs @ 53c9637d
이력 | 보기 | 이력해설 | 다운로드 (1.95 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 | [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, IncludeExceptionDetailInFaults = true)] |
||
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 SaveSettingsSettingMultiProcess(int Value) |
||
55 | { |
||
56 | throw new NotImplementedException(); |
||
57 | } |
||
58 | |||
59 | public bool SettingMultiProcess(int Value) |
||
60 | { |
||
61 | throw new NotImplementedException(); |
||
62 | } |
||
63 | |||
64 | public List<ConvertItem> WaitConvertList() |
||
65 | { |
||
66 | throw new NotImplementedException(); |
||
67 | } |
||
68 | } |
||
69 | } |