2018-06-08 19:11:02 +00:00
|
|
|
|
|
|
|
|
|
|
using AYA.SlnSinortModel.Constantes;
|
2018-06-13 14:38:02 +00:00
|
|
|
|
using AYA.SlnSinortModel.DAL.Sinort;
|
2018-06-08 19:11:02 +00:00
|
|
|
|
using AYA.SlnSinortModel.Entidades;
|
2018-06-13 14:38:02 +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
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public class Sinort : ISinort
|
|
|
|
|
|
{
|
2018-06-13 14:38:02 +00:00
|
|
|
|
#region ProyectoNormativo
|
|
|
|
|
|
//public List<Mantenimiento> ObtenerSitios()
|
|
|
|
|
|
//{
|
|
|
|
|
|
// List<Mantenimiento> respuesta = null;
|
|
|
|
|
|
// try
|
|
|
|
|
|
// {
|
|
|
|
|
|
// respuesta = new MantenimientoDAL().ObtenerSitios();
|
2018-06-06 18:21:49 +00:00
|
|
|
|
|
2018-06-13 14:38:02 +00:00
|
|
|
|
// }
|
|
|
|
|
|
// catch (Exception ex)
|
|
|
|
|
|
// {
|
|
|
|
|
|
// throw;
|
|
|
|
|
|
// }
|
|
|
|
|
|
// return respuesta;
|
|
|
|
|
|
//}
|
|
|
|
|
|
#endregion
|
2018-06-13 21:26:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
2018-06-06 18:21:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|