91 lines
4.6 KiB
C#
91 lines
4.6 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// Dieser Code wurde von einem Tool generiert.
|
|
// Laufzeitversion:4.0.30319.42000
|
|
//
|
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
|
// der Code erneut generiert wird.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace BeWo.ServiceProxy
|
|
{
|
|
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="BeWo.ServiceProxy.IQueryService")]
|
|
public interface IQueryService
|
|
{
|
|
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IQueryService/ExecuteQuery", ReplyAction="http://tempuri.org/IQueryService/ExecuteQueryResponse")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(BS.Shared.Core.BeWoFault), Action="http://tempuri.org/IQueryService/ExecuteQueryBeWoFaultFault", Name="BeWoFault", Namespace="http://schemas.datacontract.org/2004/07/BS.Shared.Core")]
|
|
string ExecuteQuery(long pQueryOid, System.Collections.Generic.List<BS.Shared.DataContracts.QueryParamDC> parameter);
|
|
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IQueryService/GetAllQueriesOfType", ReplyAction="http://tempuri.org/IQueryService/GetAllQueriesOfTypeResponse")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(BS.Shared.Core.BeWoFault), Action="http://tempuri.org/IQueryService/GetAllQueriesOfTypeBeWoFaultFault", Name="BeWoFault", Namespace="http://schemas.datacontract.org/2004/07/BS.Shared.Core")]
|
|
System.Collections.Generic.List<BS.Shared.DataContracts.QueryDC> GetAllQueriesOfType(BS.Shared.QueryType pType);
|
|
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IQueryService/PrepareQueryReport", ReplyAction="http://tempuri.org/IQueryService/PrepareQueryReportResponse")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(BS.Shared.Core.BeWoFault), Action="http://tempuri.org/IQueryService/PrepareQueryReportBeWoFaultFault", Name="BeWoFault", Namespace="http://schemas.datacontract.org/2004/07/BS.Shared.Core")]
|
|
string PrepareQueryReport(string dataTableJsonString, string id);
|
|
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IQueryService/ReportTypes", ReplyAction="http://tempuri.org/IQueryService/ReportTypesResponse")]
|
|
void ReportTypes(BS.Shared.DataContracts.ReportTypes pType);
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
public interface IQueryServiceChannel : BeWo.ServiceProxy.IQueryService, System.ServiceModel.IClientChannel
|
|
{
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
public partial class QueryServiceClient : System.ServiceModel.ClientBase<BeWo.ServiceProxy.IQueryService>, BeWo.ServiceProxy.IQueryService
|
|
{
|
|
|
|
public QueryServiceClient()
|
|
{
|
|
}
|
|
|
|
public QueryServiceClient(string endpointConfigurationName) :
|
|
base(endpointConfigurationName)
|
|
{
|
|
}
|
|
|
|
public QueryServiceClient(string endpointConfigurationName, string remoteAddress) :
|
|
base(endpointConfigurationName, remoteAddress)
|
|
{
|
|
}
|
|
|
|
public QueryServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
|
|
base(endpointConfigurationName, remoteAddress)
|
|
{
|
|
}
|
|
|
|
public QueryServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
|
|
base(binding, remoteAddress)
|
|
{
|
|
}
|
|
|
|
public string ExecuteQuery(long pQueryOid, System.Collections.Generic.List<BS.Shared.DataContracts.QueryParamDC> parameter)
|
|
{
|
|
return base.Channel.ExecuteQuery(pQueryOid, parameter);
|
|
}
|
|
|
|
public System.Collections.Generic.List<BS.Shared.DataContracts.QueryDC> GetAllQueriesOfType(BS.Shared.QueryType pType)
|
|
{
|
|
return base.Channel.GetAllQueriesOfType(pType);
|
|
}
|
|
|
|
public string PrepareQueryReport(string dataTableJsonString, string id)
|
|
{
|
|
return base.Channel.PrepareQueryReport(dataTableJsonString, id);
|
|
}
|
|
|
|
public void ReportTypes(BS.Shared.DataContracts.ReportTypes pType)
|
|
{
|
|
base.Channel.ReportTypes(pType);
|
|
}
|
|
}
|
|
}
|