markus / FinalService / FinalServiceBase / Markus.Service.WcfService / FinalService.cs @ 42d49521
이력 | 보기 | 이력해설 | 다운로드 (632 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.ServiceModel; |
5 |
using System.ServiceModel.Activation; |
6 |
using System.Text; |
7 |
using System.Threading.Tasks; |
8 |
|
9 |
namespace Markus.Service.IWcfService |
10 |
{ |
11 |
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] |
12 |
[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, IncludeExceptionDetailInFaults = false)] |
13 |
public class FinalService : IFinalService |
14 |
{ |
15 |
public string FinalAdd(string ProjectNo, string FinalID) |
16 |
{ |
17 |
throw new NotImplementedException(); |
18 |
} |
19 |
} |
20 |
} |