标签:
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.Text; using System.Data; using System.Data.SqlClient;
namespace haohaoran.Web { // 注意: 使用“重构”菜单上的“重命名”命令,可以同时更改代码和配置文件中的接口名“IDBService”。 [ServiceContract] public interface IDBService { [OperationContract] void DoWork(); [OperationContract] bool CheckUser(string sUser, string sPsd); [OperationContract] bool creatUser(string suser, string spsd); } }
标签:
原文地址:http://www.cnblogs.com/aisi-liu/p/4228419.html