 | Service sample |
| using System;
| | using System.Collections.Generic;
| | using System.Linq;
| | using System.Runtime.Serialization;
| | using System.ServiceModel;
| |
| | namespace ETG.Base.Applications.ETigers.Web.ETech.WCF
| | {
| |
| | // NOTE: If you change the interface name "IStudent" here, you must also update the reference to "IStudent" in Web.config.
| | [ServiceContract]
| | public interface IStudent
| | {
| |
| | [OperationContract]
| | StudentInfo GetStudent(int id);
| | }
| | }
| |
|