markus / FinalService / FinalServiceBase / Markus.Service.WcfService / Helper / StationService.cs @ 42d49521
이력 | 보기 | 이력해설 | 다운로드 (1.58 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.Service.Interface; |
9 |
|
10 |
namespace Markus.Service.IWcfService |
11 |
{ |
12 |
|
13 |
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] |
14 |
[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, IncludeExceptionDetailInFaults = true)] |
15 |
public class StationService : IStationService |
16 |
{ |
17 |
public List<ConvertItem> AliveConvertList() |
18 |
{ |
19 |
throw new NotImplementedException(); |
20 |
} |
21 |
|
22 |
public bool ConvertAdd(string ProjectNo, string ConvertID) |
23 |
{ |
24 |
throw new NotImplementedException(); |
25 |
} |
26 |
|
27 |
public bool ConvertFinish(string ProjectNo, string ConvertID) |
28 |
{ |
29 |
throw new NotImplementedException(); |
30 |
} |
31 |
|
32 |
public List<ConvertItem> ConvertList() |
33 |
{ |
34 |
throw new NotImplementedException(); |
35 |
} |
36 |
|
37 |
public bool ConvertMenualAdd(string ProjectNo, string UniqueID, string originfilePath, string DocumentID) |
38 |
{ |
39 |
throw new NotImplementedException(); |
40 |
} |
41 |
|
42 |
public bool SaveSettingsSettingMultiProcess(int Value) |
43 |
{ |
44 |
throw new NotImplementedException(); |
45 |
} |
46 |
|
47 |
public bool SettingMultiProcess(int Value) |
48 |
{ |
49 |
throw new NotImplementedException(); |
50 |
} |
51 |
|
52 |
public List<ConvertItem> WaitConvertList() |
53 |
{ |
54 |
throw new NotImplementedException(); |
55 |
} |
56 |
} |
57 |
} |