개정판 a5e5fff6
issue #0000 convert service의 entity를 dapper로 변경
Change-Id: I13069095813cf5dd7d7c79c7f17839682aed4fe1
ConvertService/ServiceBase/Markus.Service.WcfService/StationService.cs | ||
---|---|---|
6 | 6 |
using System.ServiceModel.Activation; |
7 | 7 |
using System.Text; |
8 | 8 |
using Markus.Message; |
9 |
using Markus.Service.Interface;
|
|
9 |
using Markus.Service.DataBase.Entities;
|
|
10 | 10 |
|
11 | 11 |
namespace Markus.Service.IWcfService |
12 | 12 |
{ |
... | ... | |
15 | 15 |
[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, IncludeExceptionDetailInFaults = false)] |
16 | 16 |
public class StationService : IStationService |
17 | 17 |
{ |
18 |
public List<ConvertItem> AliveConvertList()
|
|
18 |
public List<ConvertDoc> AliveConvertList()
|
|
19 | 19 |
{ |
20 | 20 |
throw new NotImplementedException(); |
21 | 21 |
} |
... | ... | |
30 | 30 |
throw new NotImplementedException(); |
31 | 31 |
} |
32 | 32 |
|
33 |
public List<ConvertItem> ConvertList()
|
|
33 |
public List<ConvertDoc> ConvertList()
|
|
34 | 34 |
{ |
35 | 35 |
throw new NotImplementedException(); |
36 | 36 |
} |
... | ... | |
71 | 71 |
throw new NotImplementedException(); |
72 | 72 |
} |
73 | 73 |
|
74 |
public List<ConvertItem> WaitConvertList()
|
|
74 |
public List<ConvertDoc> WaitConvertList()
|
|
75 | 75 |
{ |
76 | 76 |
throw new NotImplementedException(); |
77 | 77 |
} |
내보내기 Unified diff