Mercurial > pub > bltoolkit
comparison Source/ServiceModel/ILinqSoapService.cs @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f990fcb411a9 |
---|---|
1 using System; | |
2 using System.ServiceModel; | |
3 | |
4 namespace BLToolkit.ServiceModel | |
5 { | |
6 [ServiceContract] | |
7 public interface ILinqSoapService | |
8 { | |
9 [OperationContract] string GetSqlProviderType(); | |
10 [OperationContract] int ExecuteNonQuery(string queryData); | |
11 [OperationContract] object ExecuteScalar (string queryData); | |
12 [OperationContract] string ExecuteReader (string queryData); | |
13 [OperationContract] int ExecuteBatch (string queryData); | |
14 } | |
15 } |