You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
572 B
18 lines
572 B
using System.ServiceModel;
|
|
using System.Data;
|
|
|
|
namespace SSWMS.Common
|
|
{
|
|
[ServiceContract]
|
|
public partial interface I_BaseService
|
|
{
|
|
[OperationContract]
|
|
DataTable GetDataTable(string sql, int database = SystemCode.ConstCode.DatabaseWarehouse);
|
|
|
|
[OperationContract]
|
|
int UpdateDataTable(DataTable dt, string sTableName, out string sResult, int database = SystemCode.ConstCode.DatabaseWarehouse);
|
|
|
|
[OperationContract]
|
|
int ExecuteNonQuery(string sql, int database = SystemCode.ConstCode.DatabaseWarehouse);
|
|
}
|
|
}
|