36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.ServiceModel;
|
|
using System.Text;
|
|
using ULA.Cathay.IntegracionesSAP.EstructuraEPower;
|
|
|
|
namespace ULA.Cathay.IntegracionesSAP
|
|
{
|
|
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IIntegracionesEPower" in both code and config file together.
|
|
[ServiceContract]
|
|
public interface IIntegracionesEPower
|
|
{
|
|
[OperationContract]
|
|
bool setNewCorrespondencia(setNewCorrespondenciaRequestBody req);
|
|
|
|
[OperationContract]
|
|
bool setNewExpedientes_Aprobaciones(setNewExpedientes_AprobacionesRequestBody req);
|
|
|
|
[OperationContract]
|
|
bool setNewFacilidades(setNewFacilidadesRequestBody req);
|
|
|
|
[OperationContract]
|
|
bool setNewGarantias(setNewGarantiasRequestBody req);
|
|
|
|
[OperationContract]
|
|
bool setNewInformacion_Financiera(setNewInformacion_FinancieraRequestBody req);
|
|
|
|
[OperationContract]
|
|
bool setNewInformacion_General_Cliente(setNewInformacion_General_ClienteRequestBody req);
|
|
|
|
|
|
|
|
}
|
|
}
|