2018-06-08 19:11:02 +00:00
using AYA.SlnSinortModel.Entidades ;
2018-06-18 22:03:20 +00:00
using AYA.SlnSinortModel.Sinort ;
2018-06-06 18:21:49 +00:00
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Runtime.Serialization ;
using System.ServiceModel ;
using System.ServiceModel.Web ;
using System.Text ;
2018-06-08 19:11:02 +00:00
namespace AYA.SlnSinort.WCF
2018-06-06 18:21:49 +00:00
{
// NOTA: puede usar el comando "Rename" del menú "Refactorizar" para cambiar el nombre de interfaz "ISinort" en el código y en el archivo de configuración a la vez.
[ServiceContract]
public interface ISinort
{
2018-06-19 21:39:20 +00:00
[OperationContract]
ProyectoNormativoJSON GuardarProyectoNormativo ( ProyectoNormativoJSON model ) ;
2018-06-21 17:29:50 +00:00
[OperationContract]
ProyectoNormativoJSON GuardarConvocatoriaProyectoNormativo ( ProyectoNormativoJSON model ) ;
2018-06-19 21:39:20 +00:00
2018-06-21 20:32:43 +00:00
[OperationContract]
ProyectoNormativoJSON ObtenerProyectoNormativo ( ProyectoNormativoJSON model ) ;
2018-06-22 16:19:25 +00:00
[OperationContract]
2018-06-25 14:40:30 +00:00
int EnviarCorreo ( ProyectoNormativoJSON model ) ;
2018-06-22 18:02:17 +00:00
[OperationContract]
ProyectoNormativoJSON GuardarComentarioProyectoNormativo ( ProyectoNormativoJSON model ) ;
2018-06-21 13:52:05 +00:00
//[OperationContract]
//ProyectoNormativoJSON EliminarConvocatoriaProyectoNormativo(ProyectoNormativoJSON model);
2018-06-06 18:21:49 +00:00
}
}