annotate Source/ServiceModel/ILinqService.cs @ 4:f757da6161a1
!bug 100 + 2h fixed gregression
author |
cin |
date |
Sun, 24 Aug 2014 17:57:42 +0400 |
parents |
f990fcb411a9 |
children |
|
rev |
line source |
0
|
1 using System;
|
|
2 using System.ServiceModel;
|
|
3
|
|
4 namespace BLToolkit.ServiceModel
|
|
5 {
|
|
6 [ServiceContract]
|
|
7 public interface ILinqService
|
|
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 }
|