markus / FinalService / KCOM_FinalService / Markus.Service.WcfService / IFinalService.cs @ f2c3d74c
이력 | 보기 | 이력해설 | 다운로드 (683 Bytes)
1 | f2c3d74c | taeseongkim | using Markus.Message; |
---|---|---|---|
2 | using System; |
||
3 | using System.Collections.Generic; |
||
4 | using System.Linq; |
||
5 | using System.Runtime.Serialization; |
||
6 | using System.ServiceModel; |
||
7 | using System.ServiceModel.Activation; |
||
8 | using System.ServiceModel.Web; |
||
9 | using System.Text; |
||
10 | using System.Web.Script.Services; |
||
11 | using System.Web.Services; |
||
12 | namespace Markus.Service.IWcfService |
||
13 | { |
||
14 | [ServiceContract] |
||
15 | public interface IFinalService |
||
16 | { |
||
17 | [OperationContract] |
||
18 | [WebInvoke(Method = "POST", UriTemplate = "FinalAdd?ProjectNo={ProjectNo}&FinalID={FinalID}", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)] |
||
19 | string FinalAdd(string ProjectNo, string FinalID); |
||
20 | } |
||
21 | } |