Historico DAL - WCF - Vistas - JS - Controller
git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C237
This commit is contained in:
parent
30f03e5183
commit
a5f4a56ca0
2 changed files with 21 additions and 0 deletions
|
|
@ -107,6 +107,10 @@ namespace AYA.SlnSinort.WCF
|
|||
#region PropuestaNormativa
|
||||
[OperationContract]
|
||||
ProyectoNormativoJSON ObtenerSitios(AtesaJSON model);
|
||||
|
||||
[OperationContract]
|
||||
ProyectoNormativoJSON Historico(AtesaJSON model);
|
||||
|
||||
#endregion
|
||||
|
||||
#region Contenido
|
||||
|
|
|
|||
|
|
@ -403,6 +403,23 @@ namespace AYA.SlnSinort.WCF
|
|||
}
|
||||
return registros;
|
||||
}
|
||||
|
||||
public ProyectoNormativoJSON Historico(AtesaJSON model)
|
||||
{
|
||||
ProyectoNormativoJSON registros = new ProyectoNormativoJSON();
|
||||
try
|
||||
{
|
||||
registros = new ProyectoNormativoDAL().Historico(model);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
registros.CodigoRespuesta = EnumTipoCodigoRespuesta.ERROR;
|
||||
log.Error(ex);
|
||||
}
|
||||
return registros;
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region Contenido
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue