annotate Source/ServiceModel/ILinqSoapService.cs @ 8:a34cfdde80d6
removed strong signing
added FrameworkPathOverride for linux builds
author |
cin |
date |
Wed, 29 Nov 2017 12:43:52 +0300 |
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 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 }
|