27 lines
758 B
C#
27 lines
758 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.ServiceModel;
|
|
using System.ServiceModel.Web;
|
|
using System.Text;
|
|
using ULA.Cathay.IntegracionesEIK.Estructuras;
|
|
|
|
namespace ULA.Cathay.IntegracionesEIK
|
|
{
|
|
|
|
[ServiceContract]
|
|
public interface IIntegracionesConsultaEIK
|
|
{
|
|
|
|
[OperationContract]
|
|
UltimusTaskResponse LoadFilteredTasks(int nIncidentNo,
|
|
int? nFiltersMask,
|
|
string strProcessNameFilter,
|
|
string[] strArrStepLabelFilter,
|
|
string[] strArrUserName);
|
|
|
|
}
|
|
|
|
|
|
}
|