42 lines
1,023 B
C#
42 lines
1,023 B
C#
|
|
using Atesa.Utilitarios;
|
|
using AYA.SlnSinortModel.Constantes;
|
|
using AYA.SlnSinortModel.DAL.Sinort;
|
|
using AYA.SlnSinortModel.Entidades;
|
|
using AYA.SlnSinortModel.Sinort;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.ServiceModel;
|
|
using System.ServiceModel.Web;
|
|
using System.Text;
|
|
////using AYA.SlnSinort.WCF.ServiciosUsuariosWCF;
|
|
|
|
namespace AYA.SlnSinort.WCF
|
|
{
|
|
|
|
public class Sinort : ISinort
|
|
{
|
|
Log log = new Log("ForoDAL");
|
|
#region ProyectoNormativo
|
|
//public List<Mantenimiento> ObtenerSitios()
|
|
//{
|
|
// List<Mantenimiento> respuesta = null;
|
|
// try
|
|
// {
|
|
// respuesta = new MantenimientoDAL().ObtenerSitios();
|
|
|
|
// }
|
|
// catch (Exception ex)
|
|
// {
|
|
// throw;
|
|
// }
|
|
// return respuesta;
|
|
//}
|
|
#endregion
|
|
|
|
|
|
}
|
|
}
|