git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C480
This commit is contained in:
parent
1d1b7171c9
commit
a7486aa07c
50 changed files with 14475 additions and 1296 deletions
|
|
@ -46,7 +46,10 @@ namespace AYA.SlnSinort.WCF
|
||||||
|
|
||||||
|
|
||||||
//Para la ficha tecnica
|
//Para la ficha tecnica
|
||||||
# region Normativa y Reglamentacion Tecnica
|
#region Normativa y Reglamentacion Tecnica
|
||||||
|
[OperationContract]
|
||||||
|
int VerificarNombre(AdjuntosJSON model);
|
||||||
|
|
||||||
[OperationContract]
|
[OperationContract]
|
||||||
FichaTecnicaJSON GuardarFichaTecnica(FichaTecnicaJSON model);
|
FichaTecnicaJSON GuardarFichaTecnica(FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -223,7 +223,22 @@ namespace AYA.SlnSinort.WCF
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
# region Ficha Tecnica
|
#region Ficha Tecnica
|
||||||
|
public int VerificarNombre(AdjuntosJSON model)
|
||||||
|
{
|
||||||
|
int respuesta = 0;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
respuesta = new DocumentosAdjuntosDAL().VerificarNombre(model);
|
||||||
|
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
log.Error(ex);
|
||||||
|
}
|
||||||
|
return respuesta;
|
||||||
|
}
|
||||||
|
|
||||||
public FichaTecnicaJSON ObtenerSitios(FichaTecnicaJSON model) {
|
public FichaTecnicaJSON ObtenerSitios(FichaTecnicaJSON model) {
|
||||||
|
|
||||||
FichaTecnicaJSON registros = new FichaTecnicaJSON();
|
FichaTecnicaJSON registros = new FichaTecnicaJSON();
|
||||||
|
|
@ -716,7 +731,7 @@ namespace AYA.SlnSinort.WCF
|
||||||
{
|
{
|
||||||
catalogo.codigo = participantes.UsuarioSistema;
|
catalogo.codigo = participantes.UsuarioSistema;
|
||||||
usuario = UsuarioDAL.BuscarUsuario(catalogo);
|
usuario = UsuarioDAL.BuscarUsuario(catalogo);
|
||||||
body = plantilla.Body.Replace("$Mensaje", model.Mensaje).Replace("|", "</br>");
|
body = plantilla.Body.Replace("$Mensaje", model.Mensaje).Replace("$Link", "<a href=" + "'" + model.Link + "'" + ">Aquí </a>").Replace("|", "</br>");
|
||||||
correo.CUERPO = body;
|
correo.CUERPO = body;
|
||||||
email = usuario.EmailUsuario;
|
email = usuario.EmailUsuario;
|
||||||
correo.DESTINATARIOS = email;
|
correo.DESTINATARIOS = email;
|
||||||
|
|
@ -758,7 +773,7 @@ namespace AYA.SlnSinort.WCF
|
||||||
|
|
||||||
catalogo.codigo = model.UserName;
|
catalogo.codigo = model.UserName;
|
||||||
usuario = UsuarioDAL.BuscarUsuario(catalogo);
|
usuario = UsuarioDAL.BuscarUsuario(catalogo);
|
||||||
body = plantilla.Body.Replace("$NombreDocumentoTecnico", model.FichaTecnica.DescripcionDocumentoTecnico).Replace("|", "</br>");
|
body = plantilla.Body.Replace("$NombreDocumentoTecnico", model.FichaTecnica.DescripcionDocumentoTecnico).Replace("$Link", "<a href=" + "'" + model.Link + "'" + ">Aquí </a>").Replace("|", "</br>");
|
||||||
correo.CUERPO = body;
|
correo.CUERPO = body;
|
||||||
email = usuario.EmailUsuario;
|
email = usuario.EmailUsuario;
|
||||||
correo.DESTINATARIOS = email;
|
correo.DESTINATARIOS = email;
|
||||||
|
|
@ -822,7 +837,7 @@ namespace AYA.SlnSinort.WCF
|
||||||
.Replace("$Usuario", model.Solicitud.UsuarioSistema).Replace("$Link", "<a href=" + "'" + model.Link + "'" + ">Aquí </a>").Replace("|", "</br>");
|
.Replace("$Usuario", model.Solicitud.UsuarioSistema).Replace("$Link", "<a href=" + "'" + model.Link + "'" + ">Aquí </a>").Replace("|", "</br>");
|
||||||
correo.CUERPO = body;
|
correo.CUERPO = body;
|
||||||
email = usuario.EmailUsuario;
|
email = usuario.EmailUsuario;
|
||||||
correo.DESTINATARIOS = email;
|
correo.DESTINATARIOS = "jnunez@atesacr.com";
|
||||||
|
|
||||||
respuesta = respuestaAyA.enviarCorreo(correo);
|
respuesta = respuestaAyA.enviarCorreo(correo);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -553,6 +553,7 @@ namespace AYA.SlnSinort.WCF
|
||||||
{
|
{
|
||||||
|
|
||||||
DataSet ds = new DataSet();
|
DataSet ds = new DataSet();
|
||||||
|
|
||||||
ServiciosUsuariosWCF.ServicioUsuariosClient respuestaAyA = new ServiciosUsuariosWCF.ServicioUsuariosClient();
|
ServiciosUsuariosWCF.ServicioUsuariosClient respuestaAyA = new ServiciosUsuariosWCF.ServicioUsuariosClient();
|
||||||
ds = respuestaAyA.obtenerUsuariosActiveDirectory();
|
ds = respuestaAyA.obtenerUsuariosActiveDirectory();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,10 @@
|
||||||
|
|
||||||
<customErrors mode="Off"/>
|
<customErrors mode="Off"/>
|
||||||
<compilation debug="true" targetFramework="4.5" />
|
<compilation debug="true" targetFramework="4.5" />
|
||||||
<httpRuntime targetFramework="4.5" maxRequestLength="2147483647" executionTimeout="600" />
|
<httpRuntime targetFramework="4.5" maxRequestLength="2147483647" executionTimeout="1600" requestLengthDiskThreshold="2147483647" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</system.web>
|
</system.web>
|
||||||
<system.serviceModel>
|
<system.serviceModel>
|
||||||
<client>
|
<client>
|
||||||
|
|
@ -96,7 +99,7 @@
|
||||||
</system.serviceModel>
|
</system.serviceModel>
|
||||||
<system.webServer>
|
<system.webServer>
|
||||||
|
|
||||||
|
|
||||||
<modules runAllManagedModulesForAllRequests="true"/>
|
<modules runAllManagedModulesForAllRequests="true"/>
|
||||||
<!--
|
<!--
|
||||||
Para examinar el directorio raíz de la aplicación web durante la depuración, establezca el valor siguiente en true.
|
Para examinar el directorio raíz de la aplicación web durante la depuración, establezca el valor siguiente en true.
|
||||||
|
|
@ -107,7 +110,7 @@
|
||||||
|
|
||||||
<connectionStrings>
|
<connectionStrings>
|
||||||
<!--<add name="Contex" connectionString="data source=192.168.1.37;initial catalog=SinortAyA;persist security info=True;user id=sinort;password=sinort2018;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />-->
|
<!--<add name="Contex" connectionString="data source=192.168.1.37;initial catalog=SinortAyA;persist security info=True;user id=sinort;password=sinort2018;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />-->
|
||||||
<add name="Contex" connectionString="data source=10.50.1.98;initial catalog=SINORT;persist security info=True;user id=usersinort;password=usersinort;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />
|
<add name="Contex" connectionString="data source=10.50.1.98;initial catalog=SINORT;persist security info=True;user id=usersinort;password=usersinort;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />
|
||||||
<!-- <add name="Contex" connectionString="data source=AYA-VSRV-BDTT;initial catalog=SINORT;persist security info=True;user id=usersinort;password=us3rsinort;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />-->
|
<!-- <add name="Contex" connectionString="data source=AYA-VSRV-BDTT;initial catalog=SINORT;persist security info=True;user id=usersinort;password=us3rsinort;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />-->
|
||||||
</connectionStrings>
|
</connectionStrings>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
|
||||||
|
|
@ -237,6 +237,9 @@
|
||||||
<Compile Include="Controllers\NormativaReglamentacionTecnicaController.cs" />
|
<Compile Include="Controllers\NormativaReglamentacionTecnicaController.cs" />
|
||||||
<Compile Include="Controllers\PropuestaNormativaController.cs" />
|
<Compile Include="Controllers\PropuestaNormativaController.cs" />
|
||||||
<Compile Include="Controllers\ReportesController.cs" />
|
<Compile Include="Controllers\ReportesController.cs" />
|
||||||
|
<Compile Include="Documento.cs">
|
||||||
|
<SubType>ASPXCodeBehind</SubType>
|
||||||
|
</Compile>
|
||||||
<Compile Include="FileUploadHandler\FileUploadHandler.ashx.cs">
|
<Compile Include="FileUploadHandler\FileUploadHandler.ashx.cs">
|
||||||
<DependentUpon>FileUploadHandler.ashx</DependentUpon>
|
<DependentUpon>FileUploadHandler.ashx</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
|
@ -247,6 +250,11 @@
|
||||||
<Compile Include="Models\IdentityModels.cs" />
|
<Compile Include="Models\IdentityModels.cs" />
|
||||||
<Compile Include="Models\ManageViewModels.cs" />
|
<Compile Include="Models\ManageViewModels.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
<Compile Include="Properties\Settings.Designer.cs">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
|
</Compile>
|
||||||
<Compile Include="Reportes\datasets\dtsFichaTecnicaFinal.cs">
|
<Compile Include="Reportes\datasets\dtsFichaTecnicaFinal.cs">
|
||||||
<DependentUpon>dtsFichaTecnicaFinal.xsd</DependentUpon>
|
<DependentUpon>dtsFichaTecnicaFinal.xsd</DependentUpon>
|
||||||
<SubType>Component</SubType>
|
<SubType>Component</SubType>
|
||||||
|
|
@ -263,6 +271,11 @@
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="SqlServerTypes\Loader.cs" />
|
<Compile Include="SqlServerTypes\Loader.cs" />
|
||||||
<Compile Include="Startup.cs" />
|
<Compile Include="Startup.cs" />
|
||||||
|
<Compile Include="Web References\Vision2020\Reference.cs">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
<DependentUpon>Reference.map</DependentUpon>
|
||||||
|
</Compile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="bower_components\bootstrap-colorpicker\dist\css\bootstrap-colorpicker.css" />
|
<Content Include="bower_components\bootstrap-colorpicker\dist\css\bootstrap-colorpicker.css" />
|
||||||
|
|
@ -7224,10 +7237,23 @@
|
||||||
<Content Include="Properties\DataSources\AYA.SlnSinortModel.Sinort.Pantallas.datasource" />
|
<Content Include="Properties\DataSources\AYA.SlnSinortModel.Sinort.Pantallas.datasource" />
|
||||||
<Content Include="Properties\DataSources\AYA.SlnSinortModel.Sinort.TareasPendientes.datasource" />
|
<Content Include="Properties\DataSources\AYA.SlnSinortModel.Sinort.TareasPendientes.datasource" />
|
||||||
<Content Include="Content\richtext.scss" />
|
<Content Include="Content\richtext.scss" />
|
||||||
|
<Content Include="Properties\DataSources\System.Data.DataSet.datasource" />
|
||||||
|
<Content Include="Properties\DataSources\System.Data.DataTable.datasource" />
|
||||||
|
<Content Include="Properties\DataSources\System.Xml.XmlNode.datasource" />
|
||||||
|
<Content Include="Properties\DataSources\AYA.SlnSinortModel.Entidades.BaseJson.datasource" />
|
||||||
|
<Content Include="Properties\DataSources\AYA.SlnSinortModel.Entidades.EncuestaJSON.datasource" />
|
||||||
|
<Content Include="Properties\DataSources\AYA.SlnSinortModel.Entidades.SolicitudJSON.datasource" />
|
||||||
|
<Content Include="Properties\DataSources\AYA.SlnSinortModel.Entidades.UExternoJSON.datasource" />
|
||||||
|
<Content Include="Properties\DataSources\AYA.SlnSinortModel.Sinort.Convocatoria.datasource" />
|
||||||
|
<Content Include="Properties\DataSources\AYA.SlnSinortModel.Sinort.GotitasNormativas.datasource" />
|
||||||
<None Include="Properties\PublishProfiles\AYA.SlnSinort.pubxml" />
|
<None Include="Properties\PublishProfiles\AYA.SlnSinort.pubxml" />
|
||||||
<Content Include="Reportes\datasets\dtsFichaTecnicaFinal.xsc">
|
<Content Include="Reportes\datasets\dtsFichaTecnicaFinal.xsc">
|
||||||
<DependentUpon>dtsFichaTecnicaFinal.xsd</DependentUpon>
|
<DependentUpon>dtsFichaTecnicaFinal.xsd</DependentUpon>
|
||||||
</Content>
|
</Content>
|
||||||
|
<None Include="Properties\Settings.settings">
|
||||||
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||||
|
</None>
|
||||||
<None Include="Reportes\datasets\dtsFichaTecnicaFinal.xsd">
|
<None Include="Reportes\datasets\dtsFichaTecnicaFinal.xsd">
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
<Generator>MSDataSetGenerator</Generator>
|
<Generator>MSDataSetGenerator</Generator>
|
||||||
|
|
@ -7397,13 +7423,13 @@
|
||||||
<Content Include="Scripts\umd\popper.min.js" />
|
<Content Include="Scripts\umd\popper.min.js" />
|
||||||
<Content Include="Scripts\videopopup.js" />
|
<Content Include="Scripts\videopopup.js" />
|
||||||
<Content Include="Scripts\_references.js" />
|
<Content Include="Scripts\_references.js" />
|
||||||
<None Include="Service References\ServicioSinortWCF\Sinort.disco" />
|
|
||||||
<None Include="Service References\ServicioSinortWCF\configuration91.svcinfo" />
|
<None Include="Service References\ServicioSinortWCF\configuration91.svcinfo" />
|
||||||
<None Include="Service References\ServicioSinortWCF\configuration.svcinfo" />
|
<None Include="Service References\ServicioSinortWCF\configuration.svcinfo" />
|
||||||
<None Include="Service References\ServicioSinortWCF\Reference.svcmap">
|
<None Include="Service References\ServicioSinortWCF\Reference.svcmap">
|
||||||
<Generator>WCF Proxy Generator</Generator>
|
<Generator>WCF Proxy Generator</Generator>
|
||||||
<LastGenOutput>Reference.cs</LastGenOutput>
|
<LastGenOutput>Reference.cs</LastGenOutput>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="Service References\ServicioSinortWCF\Sinort1.disco" />
|
||||||
<Content Include="Sinort-Scripts\Aplicacion.js" />
|
<Content Include="Sinort-Scripts\Aplicacion.js" />
|
||||||
<Content Include="Sinort-Scripts\Contenido.js" />
|
<Content Include="Sinort-Scripts\Contenido.js" />
|
||||||
<Content Include="Sinort-Scripts\DocumentoTecnico.js" />
|
<Content Include="Sinort-Scripts\DocumentoTecnico.js" />
|
||||||
|
|
@ -7456,6 +7482,30 @@
|
||||||
<Content Include="SqlServerTypes\x86\SqlServerSpatial140.dll">
|
<Content Include="SqlServerTypes\x86\SqlServerSpatial140.dll">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
<Content Include="Web References\Vision2020\Reference.map">
|
||||||
|
<Generator>MSDiscoCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Reference.cs</LastGenOutput>
|
||||||
|
</Content>
|
||||||
|
<None Include="Service References\ServicioSinortWCF\Sinort1.wsdl" />
|
||||||
|
<None Include="Service References\ServicioSinortWCF\Sinort6.xsd">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</None>
|
||||||
|
<None Include="Service References\ServicioSinortWCF\Sinort61.xsd">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</None>
|
||||||
|
<None Include="Service References\ServicioSinortWCF\Sinort62.xsd">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</None>
|
||||||
|
<None Include="Service References\ServicioSinortWCF\Sinort63.xsd">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</None>
|
||||||
|
<None Include="Service References\ServicioSinortWCF\Sinort64.xsd">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</None>
|
||||||
|
<None Include="Service References\ServicioSinortWCF\Sinort65.xsd">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</None>
|
||||||
|
<None Include="Web References\Vision2020\wsapi.disco" />
|
||||||
<Content Include="Web.config">
|
<Content Include="Web.config">
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</Content>
|
</Content>
|
||||||
|
|
@ -7517,25 +7567,6 @@
|
||||||
<Content Include="Views\NormativaReglamentacionTecnica\Solicitud.cshtml" />
|
<Content Include="Views\NormativaReglamentacionTecnica\Solicitud.cshtml" />
|
||||||
<Content Include="Views\NormativaReglamentacionTecnica\FichaTecnica.cshtml" />
|
<Content Include="Views\NormativaReglamentacionTecnica\FichaTecnica.cshtml" />
|
||||||
<Content Include="Views\PropuestaNormativa\Historico.cshtml" />
|
<Content Include="Views\PropuestaNormativa\Historico.cshtml" />
|
||||||
<None Include="Service References\ServicioSinortWCF\Sinort.wsdl" />
|
|
||||||
<None Include="Service References\ServicioSinortWCF\Sinort.xsd">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</None>
|
|
||||||
<None Include="Service References\ServicioSinortWCF\Sinort1.xsd">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</None>
|
|
||||||
<None Include="Service References\ServicioSinortWCF\Sinort2.xsd">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</None>
|
|
||||||
<None Include="Service References\ServicioSinortWCF\Sinort3.xsd">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</None>
|
|
||||||
<None Include="Service References\ServicioSinortWCF\Sinort4.xsd">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</None>
|
|
||||||
<None Include="Service References\ServicioSinortWCF\Sinort5.xsd">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</None>
|
|
||||||
<Content Include="Views\NormativaReglamentacionTecnica\BusquedaFichaTecnica.cshtml" />
|
<Content Include="Views\NormativaReglamentacionTecnica\BusquedaFichaTecnica.cshtml" />
|
||||||
<Content Include="Views\Home\GotitasPendientes.cshtml" />
|
<Content Include="Views\Home\GotitasPendientes.cshtml" />
|
||||||
<Content Include="Views\Home\GotitasNormativas.cshtml" />
|
<Content Include="Views\Home\GotitasNormativas.cshtml" />
|
||||||
|
|
@ -7552,6 +7583,7 @@
|
||||||
<Content Include="Views\Home\Wiki.cshtml" />
|
<Content Include="Views\Home\Wiki.cshtml" />
|
||||||
<Content Include="Views\Login\LoginExterno.cshtml" />
|
<Content Include="Views\Login\LoginExterno.cshtml" />
|
||||||
<Content Include="Views\Login\Signup.cshtml" />
|
<Content Include="Views\Login\Signup.cshtml" />
|
||||||
|
<None Include="Web References\Vision2020\wsapi.wsdl" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="App_Data\" />
|
<Folder Include="App_Data\" />
|
||||||
|
|
@ -7584,6 +7616,22 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<EmbeddedResource Include="Reportes\rdlc\repFichaTecnica.rdlc" />
|
<EmbeddedResource Include="Reportes\rdlc\repFichaTecnica.rdlc" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<WebReferences Include="Web References\" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<WebReferenceUrl Include="http://aya-vsrv-scanv/Vision2020ServerAPIOnLine/wsapi.asmx">
|
||||||
|
<UrlBehavior>Dynamic</UrlBehavior>
|
||||||
|
<RelPath>Web References\Vision2020\</RelPath>
|
||||||
|
<UpdateFromURL>http://aya-vsrv-scanv/Vision2020ServerAPIOnLine/wsapi.asmx</UpdateFromURL>
|
||||||
|
<ServiceLocationURL>
|
||||||
|
</ServiceLocationURL>
|
||||||
|
<CachedDynamicPropName>
|
||||||
|
</CachedDynamicPropName>
|
||||||
|
<CachedAppSettingsObjectName>Settings</CachedAppSettingsObjectName>
|
||||||
|
<CachedSettingsPropName>AYA_SlnSinort_Vision2020_wsapi</CachedSettingsPropName>
|
||||||
|
</WebReferenceUrl>
|
||||||
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
|
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
|
||||||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@ namespace AYA.SlnSinort.Controllers.Login
|
||||||
return View();
|
return View();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[AllowAnonymous]
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public JsonResult ObtenerUsuarioAD(LoginJSON model)
|
public JsonResult ObtenerUsuarioAD(LoginJSON model)
|
||||||
{
|
{
|
||||||
|
|
@ -45,7 +46,29 @@ namespace AYA.SlnSinort.Controllers.Login
|
||||||
}
|
}
|
||||||
return Json(model, JsonRequestBehavior.AllowGet);
|
return Json(model, JsonRequestBehavior.AllowGet);
|
||||||
}
|
}
|
||||||
|
[AllowAnonymous]
|
||||||
|
[HttpPost]
|
||||||
|
public JsonResult VerificarUsuarioBD(CatalogosPostJSON model)
|
||||||
|
{
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
ServicioSinortWCF.SinortClient respuesta = new ServicioSinortWCF.SinortClient();
|
||||||
|
model = respuesta.VerificarUsuarioBD(model);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
return Json(model, JsonRequestBehavior.AllowGet);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void InicioSesion(AtesaJSON model)
|
public void InicioSesion(AtesaJSON model)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|
|
||||||
582
AYA.SlnSynor/AYA.SlnSynor/Documento.cs
Normal file
582
AYA.SlnSynor/AYA.SlnSynor/Documento.cs
Normal file
|
|
@ -0,0 +1,582 @@
|
||||||
|
//=======================================================================
|
||||||
|
// Instituto Costarricense de Acueductos y Alcantarillados. - 2012
|
||||||
|
// Sistema de Autoevaluación para Control Interno
|
||||||
|
//
|
||||||
|
// Explicación de los contenidos del archivo.
|
||||||
|
// =========================================================================
|
||||||
|
// Historial
|
||||||
|
// PERSONA DIA – MES - AÑO DESCRIPCIÓN
|
||||||
|
// Pedro Leiva Cerdas 10 – Febrero - 2014 Entrega del sistema. (Versión original del archivo)
|
||||||
|
// Clase para trabajar con VISION 2020
|
||||||
|
// //======================================================================
|
||||||
|
// Derechos Reservados (C) 2012 AyA.
|
||||||
|
// ESTE CÓDIGO ES PROVEÍDO “TAL CUAL ES” SIN GARANTÍA ALGUNA
|
||||||
|
// DE NINGÚN TIPO, SEA IMPLICITA O EXPLICITA.
|
||||||
|
// NO SE PERMITE SU REPRODUCCIÓN PARCIAL O TOTAL, NI SU COMERCIALIZACIÓN
|
||||||
|
//======================================================================
|
||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Web;
|
||||||
|
using System.Text;
|
||||||
|
using System.Data;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Web.UI;
|
||||||
|
using System.Collections;
|
||||||
|
using System.Configuration;
|
||||||
|
using System.Web.UI.WebControls;
|
||||||
|
using System.Web.UI.HtmlControls;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Security.Cryptography;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
|
using System.Net;
|
||||||
|
|
||||||
|
public partial class Documento : System.Web.UI.Page
|
||||||
|
{
|
||||||
|
//Se hace referencia del WS
|
||||||
|
AYA.SlnSinort.Vision2020.wsapi wsVision2020;
|
||||||
|
|
||||||
|
//public const string const_strArchivadores = "Sistemas";
|
||||||
|
//public const string strIdGaveta = ""; //para sisproap siempre serà id_gabeta="0000003C" pero mejor buscamos el id_gabeta por si ha cambiado
|
||||||
|
|
||||||
|
//public const string const_strUsuario = "sevri";
|
||||||
|
//public const string const_strClave = "usersevri";
|
||||||
|
//public const string const_strGaveta = "sevri";
|
||||||
|
//public string const_strLlaves = ConfigurationSettings.AppSettings["const_strLlaves"].ToString(); //para este sistema SDI estas son las llaves por default
|
||||||
|
public string const_strUsuario = ConfigurationSettings.AppSettings["const_strUsuario"].ToString();
|
||||||
|
public string const_strClave = ConfigurationSettings.AppSettings["const_strClave"].ToString();
|
||||||
|
public string const_strArchivadores = ConfigurationSettings.AppSettings["const_strArchivadores"].ToString();
|
||||||
|
public string const_strGaveta = ConfigurationSettings.AppSettings["const_strGaveta"].ToString();
|
||||||
|
public string strIdGaveta = ""; //para este sistema sevri simpre serà ="00000035" pero mejor lo buscamos
|
||||||
|
public string const_strLlaves = ConfigurationSettings.AppSettings["const_strLlaves"].ToString(); //para este sistema SDI estas son las llaves por default
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Método que se utiliza para retornar un DS con el àrbol Estructura
|
||||||
|
/// </summary>
|
||||||
|
public DataSet dsEstructura(string strUsuario, string strClave, bool bolMappingTypeAttribute)
|
||||||
|
{
|
||||||
|
DataSet dsArbolEstructura = new DataSet();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
dsArbolEstructura = wsVision2020.Arbol_Estructura(strUsuario, strClave, bolMappingTypeAttribute);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return dsArbolEstructura;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Método que se utiliza para retornar el id de la Carpeta o sea la DEPENDENCIA que nos interesa
|
||||||
|
/// si retorna un null es que no encontro la Carpeta
|
||||||
|
/// </summary>
|
||||||
|
private string Id_Carpeta( string strLlaves, string strValores)
|
||||||
|
{
|
||||||
|
DataSet dsCarpeta = new DataSet();
|
||||||
|
string strId_Carpeta = null;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
dsCarpeta = wsVision2020.Devuelve_Ids_Gaveta_Carpeta(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, strLlaves, strValores);
|
||||||
|
if (dsCarpeta.Tables[0].Rows.Count > 0)
|
||||||
|
{
|
||||||
|
strId_Carpeta = dsCarpeta.Tables[0].Rows[1]["valor"].ToString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return strId_Carpeta;
|
||||||
|
}
|
||||||
|
return strId_Carpeta;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Método que se utiliza para retornar un DS con la lista de los archivos soportados
|
||||||
|
/// </summary>
|
||||||
|
public DataSet dsLista_archivos_soportados()
|
||||||
|
{
|
||||||
|
DataSet dsLista_archivos_soportados = new DataSet();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
dsLista_archivos_soportados = wsVision2020.Lista_De_Archivos_Soportados();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return dsLista_archivos_soportados;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Método que se utiliza para retornar un DS con la lista de las carpetas
|
||||||
|
/// Ejemplo: wsVision2020.Buscar_Carpetas("sisproap", "usersisproap", "Sistemas", "sisproap", "", "Dependencias|Region|Area|Sistema|Estacion|Equipo|Horimetro|Usuario Sistema");
|
||||||
|
/// </summary>
|
||||||
|
private DataSet dsLista_Carpetas(string strLlaves, string strValoresLlaves)
|
||||||
|
{
|
||||||
|
DataSet dsBuscar_Carpetas = new DataSet();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// Para el caso de sisproap siempre el strId_Gaveta = 0000003C
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
dsBuscar_Carpetas = wsVision2020.Buscar_Carpetas(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, strIdGaveta, strLlaves, strValoresLlaves);
|
||||||
|
}
|
||||||
|
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
return dsBuscar_Carpetas;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Método que se utiliza para retornar un DS con la lista de documentos de una carpeta
|
||||||
|
/// Ejemplo: DataSet dsLista_De_Documentos = wsVision2020.Lista_De_Documentos(dsBuscar_Carpetas.Tables[0].Rows[0]["IDE_REG"].ToString());
|
||||||
|
/// </summary>
|
||||||
|
private DataSet dsLista_Simple_Documentos_Carpeta(string strId_Carpeta)
|
||||||
|
{
|
||||||
|
DataSet dsLista_De_Documentos = new DataSet();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
dsLista_De_Documentos = wsVision2020.Lista_De_Documentos(strId_Carpeta);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
return dsLista_De_Documentos;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Método que retorna un string con la URL de un id_objeto
|
||||||
|
/// </summary>
|
||||||
|
public string strURLArchivo( string strID_Carpeta, string strIde_obj)
|
||||||
|
{
|
||||||
|
DataSet dsObtener_URLArchivo = new DataSet();
|
||||||
|
string strURLArchivo = "";
|
||||||
|
try
|
||||||
|
{
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
strURLArchivo = wsVision2020.Descargar_Documento(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, strID_Carpeta, strIde_obj,true);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
return strURLArchivo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Método que retorna un string con la descripción del archivo
|
||||||
|
/// </summary>
|
||||||
|
public string strDescripcionArchivo(string strIde_obj)
|
||||||
|
{
|
||||||
|
DataSet dsObtener_DescripcionArchivo = new DataSet();
|
||||||
|
string strDescripcionArchivo = "";
|
||||||
|
try
|
||||||
|
{
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
dsObtener_DescripcionArchivo = wsVision2020.Lista_Notas_Documento(const_strUsuario,const_strClave, strIde_obj);
|
||||||
|
|
||||||
|
if (dsObtener_DescripcionArchivo.Tables.Count > 0)
|
||||||
|
{
|
||||||
|
strDescripcionArchivo = dsObtener_DescripcionArchivo.Tables[0].Rows[0]["Nota"].ToString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return "Sin descripción";
|
||||||
|
}
|
||||||
|
return strDescripcionArchivo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Método que inserta una nota al documento
|
||||||
|
/// </summary>
|
||||||
|
public bool bolInsertar_DescripcionArchivo(string strIde_carpeta, string strIde_objeto, string strDescripcion_obj)
|
||||||
|
{
|
||||||
|
bool Respuesta = false;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
wsVision2020.Insertar_Nota_Documento(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, strIde_carpeta, strIde_objeto, strDescripcion_obj);
|
||||||
|
Respuesta = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return Respuesta;
|
||||||
|
}
|
||||||
|
return Respuesta;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Método que inserta una nota a la carpeta del riesgo, esto es para darle un nombre conocido a cada una de ellas
|
||||||
|
/// </summary>
|
||||||
|
public bool bolInsertar_DescripcionCarpeta(string strArchivadores,string strIde_carpeta, string strDescripcion_obj)
|
||||||
|
{
|
||||||
|
bool Respuesta = false;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
wsVision2020.Insertar_Nota_Expediente(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, strIde_carpeta, strDescripcion_obj);
|
||||||
|
Respuesta = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return Respuesta;
|
||||||
|
}
|
||||||
|
return Respuesta;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Este método devuelve un DS completo con la siguiente estructura (invoca los WebService necesarios)
|
||||||
|
///---------------------------------------------------------------------------------------------------------------------
|
||||||
|
/// Dependencia | ide_reg | ide_obj | des_obj | archivado | MB | ext_tipo | URL | ESTADO
|
||||||
|
///----------------------------------------------------------------------------------------------------------------------
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="strLlaves">estructura de la llave: ejemplo:"Dependencias|Region|Area|Sistema|Estacion|Equipo|Horimetro|Usuario Sistema"</param>
|
||||||
|
/// <param name="strValoresLlaves">valores de la llave:ejemplo: 1|2|3|1|1|318|sisproap</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public DataSet dsLista_Completa_Documentos_Carpeta(string strLlaves, string strValoresLlaves)
|
||||||
|
{
|
||||||
|
DataSet dsCarpeta = new DataSet();
|
||||||
|
DataSet dsListaDocumentos = new DataSet();
|
||||||
|
DataSet dsArchivo = new DataSet();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// Obtener el id_reg (ID de la carpeta) y cantidad de documentos contenidos en ella
|
||||||
|
dsCarpeta = dsLista_Carpetas(strLlaves, strValoresLlaves);
|
||||||
|
|
||||||
|
if (dsCarpeta.Tables.Count.Equals(0))
|
||||||
|
{
|
||||||
|
// no existe una carpeta
|
||||||
|
}
|
||||||
|
|
||||||
|
else if (dsCarpeta.Tables[0].Rows.Count > 0)
|
||||||
|
//PENDIENTE: ojo si encuentra mas de dos registros debe de enviar un correo al administrador indicando que encontró
|
||||||
|
//directorios duplicados con la misma estructura y esto debe de correjirse.
|
||||||
|
{
|
||||||
|
// Obtiene la lista de los archivos (aun no tiene el URL)
|
||||||
|
dsListaDocumentos = dsLista_Simple_Documentos_Carpeta(dsCarpeta.Tables[0].Rows[0]["ide_reg"].ToString());
|
||||||
|
if (dsListaDocumentos.Tables.Count > 0)
|
||||||
|
{
|
||||||
|
//Construir el DataTable
|
||||||
|
DataTable dtArchivo = new DataTable();
|
||||||
|
dtArchivo.Columns.Add("ide_carpeta", typeof(string));
|
||||||
|
dtArchivo.Columns.Add("ide_objeto", typeof(string));
|
||||||
|
dtArchivo.Columns.Add("des_objeto", typeof(string));
|
||||||
|
dtArchivo.Columns.Add("FechaArchivado", typeof(DateTime));
|
||||||
|
dtArchivo.Columns.Add("MB", typeof(string));
|
||||||
|
dtArchivo.Columns.Add("ext_objeto", typeof(string));
|
||||||
|
dtArchivo.Columns.Add("descripcion_objeto", typeof(string));
|
||||||
|
dtArchivo.Columns.Add("Estado", typeof(string));
|
||||||
|
//se recorre el DS para obtener la descripción del los archivos
|
||||||
|
foreach (DataRow drTemp in dsListaDocumentos.Tables[0].Rows)
|
||||||
|
{
|
||||||
|
//Cargar valores al ROW y agregar al DataTable
|
||||||
|
dtArchivo.Rows.Add( dsCarpeta.Tables[0].Rows[0]["ide_reg"].ToString(),
|
||||||
|
drTemp["ide_obj"].ToString(),
|
||||||
|
drTemp["des_obj"].ToString(),
|
||||||
|
drTemp["Archivado"].ToString(),
|
||||||
|
drTemp["MB"].ToString(),
|
||||||
|
drTemp["ext_tip"].ToString(),
|
||||||
|
strDescripcionArchivo(drTemp["ide_obj"].ToString()).ToString(),
|
||||||
|
"~/App_Themes/Estados/imgBolita_Verde.png");
|
||||||
|
}
|
||||||
|
// Convertir el DataTable a DataSet
|
||||||
|
dsArchivo.Tables.Add(dtArchivo);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
return dsArchivo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Este método crea una carpeta, en la GAVETA="SEVRI" Id_Gaveta="00000035"
|
||||||
|
/// </summary>
|
||||||
|
public string strInsertar_Carpeta(string strArchivadores, string strLlaves,string strValoresLlaves)
|
||||||
|
{
|
||||||
|
string strId_Carpeta = null;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// Me aseguro que no exista esa carpeta o sea que no no se ha creado esa dependencia, ya que
|
||||||
|
// aunque exista siempre ella crea una carpeta nueva, porque lo que importa es el ID y no el nombre de la dependencia
|
||||||
|
// que trae en la llave
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
if (!(wsVision2020.Existe_Carpeta(const_strArchivadores, const_strGaveta, strLlaves, strValoresLlaves)))
|
||||||
|
{
|
||||||
|
// Se crea la carpeta y se obtiene el id de la nueva carpeta
|
||||||
|
strId_Carpeta = wsVision2020.Insertar_Carpeta(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, strLlaves, strValoresLlaves);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// En el caso que si exista la carpeta, solo se solicita el id_carpeta invocando al método Id_Carpeta
|
||||||
|
strId_Carpeta = Id_Carpeta(strLlaves, strValoresLlaves);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
return strId_Carpeta;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Este método sube un archivo a una carpeta especifica, y agrega una descripción a al archivo,
|
||||||
|
/// En caso de no exisistir la carpeta, esta será creada automáticamente y se le agrega una etiqueta o nombre a dicha carpeta
|
||||||
|
/// </summary>
|
||||||
|
public bool Archivar_Documento_Byte(string strEtiquetaCarpeta, string strLlaves, string strValoresLlaves, string strNombreArchivo, Byte[] byteArchivoEnByte, string strDescripcionDocumento)
|
||||||
|
{
|
||||||
|
string strId_Carpeta = null;
|
||||||
|
bool valor_retornado = false;
|
||||||
|
string str_idObjeto = ""; //id del objeto luego de ser guardado
|
||||||
|
try
|
||||||
|
{
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
//Paso 1: asegurarse que la carpeta exista
|
||||||
|
if (!(wsVision2020.Existe_Carpeta(const_strArchivadores, const_strGaveta, strLlaves, strValoresLlaves)))
|
||||||
|
{
|
||||||
|
// Se crea la carpeta y se obtiene el id de la nueva carpeta
|
||||||
|
strId_Carpeta = wsVision2020.Insertar_Carpeta(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, strLlaves, strValoresLlaves);
|
||||||
|
// Se coloca una nota o etiqueta a la carpeta, esto es para personalizar el nombre, en este casa
|
||||||
|
// se le esta asignando el codigo del riesgo.
|
||||||
|
wsVision2020.Insertar_Nota_Expediente(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, strId_Carpeta, strEtiquetaCarpeta);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// En el caso que si exista la carpeta, solo se solicita el id_carpeta invocando al método Id_Carpeta
|
||||||
|
strId_Carpeta = Id_Carpeta(strLlaves, strValoresLlaves);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Verificar si encontro el id_carpeta
|
||||||
|
if (strId_Carpeta.ToString().Trim() != "")
|
||||||
|
{
|
||||||
|
//Paso 2: Archivar documento en Byte
|
||||||
|
str_idObjeto = wsVision2020.ArchivarDocumentoByteDevuelveIdObjeto(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, strId_Carpeta, strNombreArchivo, byteArchivoEnByte);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Paso 3: Subir descripción del archivo (si es que existe)
|
||||||
|
if (!(strDescripcionDocumento.ToString() == string.Empty && str_idObjeto == string.Empty))
|
||||||
|
{
|
||||||
|
valor_retornado = bolInsertar_DescripcionArchivo(strId_Carpeta, str_idObjeto, strDescripcionDocumento);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return valor_retornado;
|
||||||
|
}
|
||||||
|
return valor_retornado;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Guarda en base de datos todo lo relacionado al archivo una vez que este fue subido al servidor
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="strValoresLlaves"> </param> ejemplo Cedula|Tipoadjunto se dividen con el siguiente caracter "|"
|
||||||
|
/// <param name="strNombreArchivo"></param> ejemplo 1-1044-0505|LISTACERTIFICACIONLITERAL
|
||||||
|
/// <returns>Mensaje de el estado de la operacion</returns>
|
||||||
|
public string Archivar_Documento(string strValoresLlaves, string strNombreArchivo, Byte[] byteArchivoEnByte)
|
||||||
|
{
|
||||||
|
string strId_Carpeta = null;
|
||||||
|
string valor_retornado = "Error al guardar el archivo";
|
||||||
|
try
|
||||||
|
{
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
//Paso 1: asegurarse que la carpeta exista
|
||||||
|
if (!(wsVision2020.Existe_Carpeta(const_strArchivadores, const_strGaveta, const_strLlaves, strValoresLlaves)))
|
||||||
|
{
|
||||||
|
// Se crea la carpeta y se obtiene el id de la nueva carpeta
|
||||||
|
strId_Carpeta = wsVision2020.Insertar_Carpeta(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, const_strLlaves, strValoresLlaves);
|
||||||
|
// Se coloca una nota o etiqueta al carpeta, esto es para personalizar el nombre, en este casa
|
||||||
|
// se le esta asignando el codigo del riesgo.
|
||||||
|
//wsVision2020.Insertar_Nota_Expediente(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, strId_Carpeta, strEtiquetaCarpeta);
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
|
||||||
|
// En el caso que si exista la carpeta, solo se solicita el id_carpeta invocando al método Id_Carpeta
|
||||||
|
strId_Carpeta = Id_Carpeta(const_strLlaves, strValoresLlaves);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Verificar si encontro el id_carpeta
|
||||||
|
if (strId_Carpeta.ToString().Trim() != "")
|
||||||
|
{
|
||||||
|
//Paso 2: Archivar documento en Byte
|
||||||
|
valor_retornado = wsVision2020.Archivar_DocumentoByte(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, const_strLlaves, strValoresLlaves, strNombreArchivo, byteArchivoEnByte);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
throw ex;
|
||||||
|
//return valor_retornado;
|
||||||
|
}
|
||||||
|
return valor_retornado;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Carga el grid de documento
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="lblTotalDocumento">cantidad de registros que posee el grid de documento</param>
|
||||||
|
/// <param name="grvDocumento">grid para la carga de datos</param>
|
||||||
|
/// <param name="strLlave">estructura de la llave - ejemplo: Dependencias|Region|Area|Sistema|Estacion|Equipo|Horimetro|Usuario Sistema</param>
|
||||||
|
/// <param name="strLLavePK">valores de la llave - ejemplo: 1|2|3|1|1|318|sisproap</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Guardar documentos en base a la llave establecida
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="strEtiquetaCarpeta">descripcion de la carpeta, lo que se va almacenar</param>
|
||||||
|
/// <param name="txtNombreDeseadoAchivo">Nombre del archivo</param>
|
||||||
|
/// <param name="txtDescripcionDocumento">Descripcion del archivo</param>
|
||||||
|
/// <param name="txtURL">Url: pendiente</param>
|
||||||
|
/// <param name="afuArchivo">archivo a almacenar</param>
|
||||||
|
/// <param name="strLlave">la estructura de la llave: ejemplo:"Dependencias|Region|Area|Sistema|Estacion|Equipo|Horimetro|Usuario Sistema"</param>
|
||||||
|
/// <param name="strLLavePK">valores de la llave:ejemplo: 1|2|3|1|1|318|sisproap</param>
|
||||||
|
//public void GuardarDatos_Documento(string strEtiquetaCarpeta,TextBox txtNombreDeseadoAchivo, TextBox txtDescripcionDocumento, TextBox txtURL, AjaxControlToolkit.AsyncFileUpload afuArchivo, String strLlave, String strLLavePK)
|
||||||
|
//{
|
||||||
|
// Documento Archivar_documento = new Documento();
|
||||||
|
// Documento dtDocumento = new Documento();
|
||||||
|
|
||||||
|
// bool boolValorRetorno = false;
|
||||||
|
|
||||||
|
// //Ajustar nombre archivo, por si trae extensión
|
||||||
|
// if (txtNombreDeseadoAchivo.Text.ToString().Trim().IndexOf(".") > 0)
|
||||||
|
// {
|
||||||
|
// txtNombreDeseadoAchivo.Text = txtNombreDeseadoAchivo.Text.Remove(txtNombreDeseadoAchivo.Text.ToString().Trim().IndexOf("."),
|
||||||
|
// txtNombreDeseadoAchivo.Text.ToString().Trim().Length);
|
||||||
|
// }
|
||||||
|
|
||||||
|
// //Subir el archivo y descripción del archivo
|
||||||
|
// if (afuArchivo.HasFile)
|
||||||
|
// {
|
||||||
|
// boolValorRetorno = Archivar_documento.Archivar_Documento_Byte(
|
||||||
|
// strEtiquetaCarpeta, //ConfigurationManager.AppSettings["prmGaveta_SISPROAP_VISION2020"],
|
||||||
|
// strLlave.ToString(), //"Dependencias|Region|Area|Sistema|Estacion|Equipo|Horimetro|Usuario Sistema"
|
||||||
|
// //Parámetro 2: construir valores de las llaves -------------------------------
|
||||||
|
// /* se coloca la validacion, para verificar si la llave que ingresa es de Biblioteca o no
|
||||||
|
// ,esto para mantener el PKDEPENDENCIA siempre en 1 para la llave biblioteca*/
|
||||||
|
// (strLLavePK == (ConfigurationSettings.AppSettings["estructuraLlaveBiblioteca"]) ?
|
||||||
|
// ConfigurationSettings.AppSettings["PKBiblioteca"] : Session["PKDEPENDENCIA"].ToString().Trim()) + "|" +
|
||||||
|
// strLLavePK.ToString(),
|
||||||
|
// //Fin contrucción parámetro llave ---------------------------------------------------
|
||||||
|
// //Parámetro 3: Nombre Archivo
|
||||||
|
// txtNombreDeseadoAchivo.Text.ToString().Trim().Equals("") ? afuArchivo.FileName : (txtNombreDeseadoAchivo.Text.Trim() + ".pdf"),
|
||||||
|
// //Parámetro 4: Archivo en Byte
|
||||||
|
// afuArchivo.FileBytes,
|
||||||
|
// //Parámetro 6: Descripción del archivo
|
||||||
|
// txtDescripcionDocumento.Text);
|
||||||
|
|
||||||
|
// //PENDIENTE:Subir el archivo con el URL (ruta de INTERNET)
|
||||||
|
// // aqui implementar subir archivo cuando ponen la URL
|
||||||
|
// txtNombreDeseadoAchivo.Text = "";
|
||||||
|
// txtDescripcionDocumento.Text = "";
|
||||||
|
// txtURL.Text = "";
|
||||||
|
// }
|
||||||
|
// txtNombreDeseadoAchivo.Focus();
|
||||||
|
//}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Este método devuelve la ruta html para ver un documento en especifico
|
||||||
|
/// </summary>
|
||||||
|
public string Visor_Documento(string strValoresLlaves,string strCedula)
|
||||||
|
{
|
||||||
|
wsVision2020 = new AYA.SlnSinort.Vision2020.wsapi();
|
||||||
|
string valor_retornado = "";
|
||||||
|
string id_Carpeta = "";
|
||||||
|
string id_Obj = "";
|
||||||
|
DataSet ds = new DataSet();
|
||||||
|
bool descargado = true;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (wsVision2020.Existe_Carpeta(const_strArchivadores, const_strGaveta, const_strLlaves, strValoresLlaves))
|
||||||
|
{
|
||||||
|
ds = wsVision2020.Buscar_Carpetas(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, strIdGaveta, const_strLlaves, strValoresLlaves);
|
||||||
|
id_Carpeta = ds.Tables[0].Rows[0]["ide_reg"].ToString();
|
||||||
|
ds = wsVision2020.Lista_De_Documentos(id_Carpeta);
|
||||||
|
DateTime fecha = Convert.ToDateTime(ds.Tables[0].Rows[0]["Archivado"].ToString());
|
||||||
|
foreach (DataRow row in ds.Tables[0].Rows)
|
||||||
|
{
|
||||||
|
//if (Convert.ToDateTime(row["Archivado"].ToString()) >= fecha)
|
||||||
|
// fecha = Convert.ToDateTime(row["Archivado"].ToString());
|
||||||
|
using (AYA.SlnSinort.Vision2020.wsapi wsVision2020Descarga = new AYA.SlnSinort.Vision2020.wsapi())
|
||||||
|
{
|
||||||
|
id_Obj = row["ide_obj"].ToString();
|
||||||
|
|
||||||
|
string strResultado = wsVision2020Descarga.Descargar_Documento(const_strUsuario, const_strClave, const_strArchivadores, const_strGaveta, id_Carpeta, id_Obj,true) ;
|
||||||
|
valor_retornado += GetFileName(strResultado.Replace(@"|", "")) + "|";
|
||||||
|
descargado = DescargarArchivo2020(strResultado, strCedula);
|
||||||
|
//System.Threading.Thread.Sleep(4000);//ESPERAR POR DOS SEGUNDOS MIENTRAS SE DESCARGA EL DOCUMENTO
|
||||||
|
//using (var client = new System.Net.WebClient())
|
||||||
|
//{
|
||||||
|
// string nombreDoc = GetFileName(valor_retornado.Replace(@"|", ""));
|
||||||
|
// client.DownloadFile(valor_retornado.Replace(@"|",""), nombreDoc);
|
||||||
|
//}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return "No existe";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return valor_retornado;
|
||||||
|
}
|
||||||
|
return valor_retornado;
|
||||||
|
}
|
||||||
|
private string GetFileName(string hrefLink)
|
||||||
|
{
|
||||||
|
string[] parts = hrefLink.Split('/');
|
||||||
|
string fileName = "";
|
||||||
|
|
||||||
|
if (parts.Length > 0)
|
||||||
|
fileName = parts[parts.Length - 1];
|
||||||
|
else
|
||||||
|
fileName = hrefLink;
|
||||||
|
|
||||||
|
return fileName;
|
||||||
|
}
|
||||||
|
private bool DescargarArchivo2020(string url, string strCedula)
|
||||||
|
{
|
||||||
|
bool respuesta = false;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
WebRequest request = WebRequest.Create(url);
|
||||||
|
WebResponse response = request.GetResponse();
|
||||||
|
string targetUrl = Server.MapPath("../../DocsRespuesta/" + strCedula + "/");
|
||||||
|
if (!Directory.Exists(targetUrl))
|
||||||
|
Directory.CreateDirectory(targetUrl);
|
||||||
|
|
||||||
|
string originalFileName = request.RequestUri.ToString().Substring(request.RequestUri.ToString().LastIndexOf("/") + 1);// response.ResponseUri.AbsolutePath.Substring(response.ResponseUri.AbsolutePath.LastIndexOf("/") + 1);
|
||||||
|
Stream streamWithFileBody = response.GetResponseStream();
|
||||||
|
|
||||||
|
using (Stream output = File.OpenWrite(targetUrl + originalFileName))
|
||||||
|
{
|
||||||
|
streamWithFileBody.CopyTo(output);
|
||||||
|
streamWithFileBody.Close();
|
||||||
|
}
|
||||||
|
|
||||||
|
respuesta = true;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
return respuesta;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -84,7 +84,7 @@ namespace webAgenciaVirtual
|
||||||
context.Response.ContentType = "text/plain";
|
context.Response.ContentType = "text/plain";
|
||||||
}
|
}
|
||||||
|
|
||||||
//context.Response.Write("Success");
|
context.Response.Write("Success");
|
||||||
context.Response.ContentType = "text/plain";
|
context.Response.ContentType = "text/plain";
|
||||||
context.Response.Write(file);
|
context.Response.Write(file);
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file is automatically generated by Visual Studio .Net. It is
|
||||||
|
used to store generic object data source configuration information.
|
||||||
|
Renaming the file extension or editing the content of this file may
|
||||||
|
cause the file to be unrecognizable by the program.
|
||||||
|
-->
|
||||||
|
<GenericObjectDataSource DisplayName="BaseJson" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
|
<TypeInfo>AYA.SlnSinortModel.Entidades.BaseJson, AYA.SlnSinortModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||||
|
</GenericObjectDataSource>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file is automatically generated by Visual Studio .Net. It is
|
||||||
|
used to store generic object data source configuration information.
|
||||||
|
Renaming the file extension or editing the content of this file may
|
||||||
|
cause the file to be unrecognizable by the program.
|
||||||
|
-->
|
||||||
|
<GenericObjectDataSource DisplayName="EncuestaJSON" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
|
<TypeInfo>AYA.SlnSinortModel.Entidades.EncuestaJSON, AYA.SlnSinortModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||||
|
</GenericObjectDataSource>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file is automatically generated by Visual Studio .Net. It is
|
||||||
|
used to store generic object data source configuration information.
|
||||||
|
Renaming the file extension or editing the content of this file may
|
||||||
|
cause the file to be unrecognizable by the program.
|
||||||
|
-->
|
||||||
|
<GenericObjectDataSource DisplayName="SolicitudJSON" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
|
<TypeInfo>AYA.SlnSinortModel.Entidades.SolicitudJSON, AYA.SlnSinortModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||||
|
</GenericObjectDataSource>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file is automatically generated by Visual Studio .Net. It is
|
||||||
|
used to store generic object data source configuration information.
|
||||||
|
Renaming the file extension or editing the content of this file may
|
||||||
|
cause the file to be unrecognizable by the program.
|
||||||
|
-->
|
||||||
|
<GenericObjectDataSource DisplayName="UExternoJSON" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
|
<TypeInfo>AYA.SlnSinortModel.Entidades.UExternoJSON, AYA.SlnSinortModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||||
|
</GenericObjectDataSource>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file is automatically generated by Visual Studio .Net. It is
|
||||||
|
used to store generic object data source configuration information.
|
||||||
|
Renaming the file extension or editing the content of this file may
|
||||||
|
cause the file to be unrecognizable by the program.
|
||||||
|
-->
|
||||||
|
<GenericObjectDataSource DisplayName="Convocatoria" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
|
<TypeInfo>AYA.SlnSinortModel.Sinort.Convocatoria, AYA.SlnSinortModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||||
|
</GenericObjectDataSource>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file is automatically generated by Visual Studio .Net. It is
|
||||||
|
used to store generic object data source configuration information.
|
||||||
|
Renaming the file extension or editing the content of this file may
|
||||||
|
cause the file to be unrecognizable by the program.
|
||||||
|
-->
|
||||||
|
<GenericObjectDataSource DisplayName="GotitasNormativas" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
|
<TypeInfo>AYA.SlnSinortModel.Sinort.GotitasNormativas, AYA.SlnSinortModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||||
|
</GenericObjectDataSource>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file is automatically generated by Visual Studio .Net. It is
|
||||||
|
used to store generic object data source configuration information.
|
||||||
|
Renaming the file extension or editing the content of this file may
|
||||||
|
cause the file to be unrecognizable by the program.
|
||||||
|
-->
|
||||||
|
<GenericObjectDataSource DisplayName="DataSet" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
|
<TypeInfo>System.Data.DataSet, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</TypeInfo>
|
||||||
|
</GenericObjectDataSource>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file is automatically generated by Visual Studio .Net. It is
|
||||||
|
used to store generic object data source configuration information.
|
||||||
|
Renaming the file extension or editing the content of this file may
|
||||||
|
cause the file to be unrecognizable by the program.
|
||||||
|
-->
|
||||||
|
<GenericObjectDataSource DisplayName="DataTable" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
|
<TypeInfo>System.Data.DataTable, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</TypeInfo>
|
||||||
|
</GenericObjectDataSource>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file is automatically generated by Visual Studio .Net. It is
|
||||||
|
used to store generic object data source configuration information.
|
||||||
|
Renaming the file extension or editing the content of this file may
|
||||||
|
cause the file to be unrecognizable by the program.
|
||||||
|
-->
|
||||||
|
<GenericObjectDataSource DisplayName="XmlNode" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
|
<TypeInfo>System.Xml.XmlNode, System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</TypeInfo>
|
||||||
|
</GenericObjectDataSource>
|
||||||
36
AYA.SlnSynor/AYA.SlnSynor/Properties/Settings.Designer.cs
generated
Normal file
36
AYA.SlnSynor/AYA.SlnSynor/Properties/Settings.Designer.cs
generated
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace AYA.SlnSinort.Properties {
|
||||||
|
|
||||||
|
|
||||||
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0")]
|
||||||
|
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||||
|
|
||||||
|
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||||
|
|
||||||
|
public static Settings Default {
|
||||||
|
get {
|
||||||
|
return defaultInstance;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.WebServiceUrl)]
|
||||||
|
[global::System.Configuration.DefaultSettingValueAttribute("http://aya-vsrv-scanv/Vision2020ServerAPIOnLine/wsapi.asmx")]
|
||||||
|
public string AYA_SlnSinort_Vision2020_wsapi {
|
||||||
|
get {
|
||||||
|
return ((string)(this["AYA_SlnSinort_Vision2020_wsapi"]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
9
AYA.SlnSynor/AYA.SlnSynor/Properties/Settings.settings
Normal file
9
AYA.SlnSynor/AYA.SlnSynor/Properties/Settings.settings
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="AYA.SlnSinort.Properties" GeneratedClassName="Settings">
|
||||||
|
<Profiles />
|
||||||
|
<Settings>
|
||||||
|
<Setting Name="AYA_SlnSinort_Vision2020_wsapi" Type="(Web Service URL)" Scope="Application">
|
||||||
|
<Value Profile="(Default)">http://aya-vsrv-scanv/Vision2020ServerAPIOnLine/wsapi.asmx</Value>
|
||||||
|
</Setting>
|
||||||
|
</Settings>
|
||||||
|
</SettingsFile>
|
||||||
|
|
@ -21,12 +21,24 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/GuardarProyectoNormativoResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/GuardarProyectoNormativoResponse")]
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON> GuardarProyectoNormativoAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON> GuardarProyectoNormativoAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/BuscarNombreProyecto", ReplyAction="http://tempuri.org/ISinort/BuscarNombreProyectoResponse")]
|
||||||
|
string BuscarNombreProyecto(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/BuscarNombreProyecto", ReplyAction="http://tempuri.org/ISinort/BuscarNombreProyectoResponse")]
|
||||||
|
System.Threading.Tasks.Task<string> BuscarNombreProyectoAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarConvocatoriaProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/GuardarConvocatoriaProyectoNormativoResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarConvocatoriaProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/GuardarConvocatoriaProyectoNormativoResponse")]
|
||||||
AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON GuardarConvocatoriaProyectoNormativo(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON GuardarConvocatoriaProyectoNormativo(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarConvocatoriaProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/GuardarConvocatoriaProyectoNormativoResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarConvocatoriaProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/GuardarConvocatoriaProyectoNormativoResponse")]
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON> GuardarConvocatoriaProyectoNormativoAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON> GuardarConvocatoriaProyectoNormativoAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ActualizarConvocados", ReplyAction="http://tempuri.org/ISinort/ActualizarConvocadosResponse")]
|
||||||
|
AYA.SlnSinortModel.Sinort.Convocatoria[] ActualizarConvocados(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ActualizarConvocados", ReplyAction="http://tempuri.org/ISinort/ActualizarConvocadosResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.Convocatoria[]> ActualizarConvocadosAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/ObtenerProyectoNormativoResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/ObtenerProyectoNormativoResponse")]
|
||||||
AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON ObtenerProyectoNormativo(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON ObtenerProyectoNormativo(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
|
|
@ -51,24 +63,114 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarEventoProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/GuardarEventoProyectoNormativoResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarEventoProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/GuardarEventoProyectoNormativoResponse")]
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON> GuardarEventoProyectoNormativoAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON> GuardarEventoProyectoNormativoAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EliminarConvocatoriaProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/EliminarConvocatoriaProyectoNormativoResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON EliminarConvocatoriaProyectoNormativo(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EliminarConvocatoriaProyectoNormativo", ReplyAction="http://tempuri.org/ISinort/EliminarConvocatoriaProyectoNormativoResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON> EliminarConvocatoriaProyectoNormativoAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnica", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnica", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaResponse")]
|
||||||
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnica(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnica(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnica", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnica", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaResponse")]
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> GuardarFichaTecnicaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> GuardarFichaTecnicaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnicaHistorico", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaHistoricoResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnicaHistorico(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnicaHistorico", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaHistoricoResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> GuardarFichaTecnicaHistoricoAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnicaHistoricoPalabraClave", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaHistoricoPalabraClaveResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnicaHistoricoPalabraClave(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnicaHistoricoPalabraClave", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaHistoricoPalabraClaveResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> GuardarFichaTecnicaHistoricoPalabraClaveAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnicaPalabraClave", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaPalabraClaveResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnicaPalabraClave", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaPalabraClaveResponse")]
|
||||||
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnicaPalabraClave(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnicaPalabraClave(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnicaPalabraClave", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaPalabraClaveResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarFichaTecnicaPalabraClave", ReplyAction="http://tempuri.org/ISinort/GuardarFichaTecnicaPalabraClaveResponse")]
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> GuardarFichaTecnicaPalabraClaveAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> GuardarFichaTecnicaPalabraClaveAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerFichaTecnica", ReplyAction="http://tempuri.org/ISinort/ObtenerFichaTecnicaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerFichaTecnica(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerFichaTecnica", ReplyAction="http://tempuri.org/ISinort/ObtenerFichaTecnicaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerFichaTecnicaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerSitios", ReplyAction="http://tempuri.org/ISinort/ObtenerSitiosResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerSitios(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerSitios", ReplyAction="http://tempuri.org/ISinort/ObtenerSitiosResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerSitiosAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerEliminadas", ReplyAction="http://tempuri.org/ISinort/ObtenerEliminadasResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerEliminadas(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerEliminadas", ReplyAction="http://tempuri.org/ISinort/ObtenerEliminadasResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerEliminadasAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerInactivas", ReplyAction="http://tempuri.org/ISinort/ObtenerInactivasResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerInactivas(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerInactivas", ReplyAction="http://tempuri.org/ISinort/ObtenerInactivasResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerInactivasAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EnviarCorreoFichaTecnica", ReplyAction="http://tempuri.org/ISinort/EnviarCorreoFichaTecnicaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON EnviarCorreoFichaTecnica(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EnviarCorreoFichaTecnica", ReplyAction="http://tempuri.org/ISinort/EnviarCorreoFichaTecnicaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> EnviarCorreoFichaTecnicaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EliminarFichaTecnica", ReplyAction="http://tempuri.org/ISinort/EliminarFichaTecnicaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON EliminarFichaTecnica(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EliminarFichaTecnica", ReplyAction="http://tempuri.org/ISinort/EliminarFichaTecnicaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> EliminarFichaTecnicaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerFichaTecnicaHistorico", ReplyAction="http://tempuri.org/ISinort/ObtenerFichaTecnicaHistoricoResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerFichaTecnicaHistorico(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerFichaTecnicaHistorico", ReplyAction="http://tempuri.org/ISinort/ObtenerFichaTecnicaHistoricoResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerFichaTecnicaHistoricoAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/InsertarActualizarFichaTecnicaAlerta", ReplyAction="http://tempuri.org/ISinort/InsertarActualizarFichaTecnicaAlertaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON InsertarActualizarFichaTecnicaAlerta(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/InsertarActualizarFichaTecnicaAlerta", ReplyAction="http://tempuri.org/ISinort/InsertarActualizarFichaTecnicaAlertaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> InsertarActualizarFichaTecnicaAlertaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerFichaTecnicaAlerta", ReplyAction="http://tempuri.org/ISinort/ObtenerFichaTecnicaAlertaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerFichaTecnicaAlerta(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerFichaTecnicaAlerta", ReplyAction="http://tempuri.org/ISinort/ObtenerFichaTecnicaAlertaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerFichaTecnicaAlertaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerFichaAlerta", ReplyAction="http://tempuri.org/ISinort/ObtenerFichaAlertaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerFichaAlerta(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerFichaAlerta", ReplyAction="http://tempuri.org/ISinort/ObtenerFichaAlertaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerFichaAlertaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/RemoverAdjunto", ReplyAction="http://tempuri.org/ISinort/RemoverAdjuntoResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/RemoverAdjunto", ReplyAction="http://tempuri.org/ISinort/RemoverAdjuntoResponse")]
|
||||||
AYA.SlnSinortModel.Entidades.AdjuntosJSON RemoverAdjunto(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
AYA.SlnSinortModel.Entidades.AdjuntosJSON RemoverAdjunto(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/RemoverAdjunto", ReplyAction="http://tempuri.org/ISinort/RemoverAdjuntoResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/RemoverAdjunto", ReplyAction="http://tempuri.org/ISinort/RemoverAdjuntoResponse")]
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.AdjuntosJSON> RemoverAdjuntoAsync(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.AdjuntosJSON> RemoverAdjuntoAsync(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/CopiarAdjunto", ReplyAction="http://tempuri.org/ISinort/CopiarAdjuntoResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.AdjuntosJSON CopiarAdjunto(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/CopiarAdjunto", ReplyAction="http://tempuri.org/ISinort/CopiarAdjuntoResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.AdjuntosJSON> CopiarAdjuntoAsync(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EliminarbaseAdjunto", ReplyAction="http://tempuri.org/ISinort/EliminarbaseAdjuntoResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.AdjuntosJSON EliminarbaseAdjunto(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EliminarbaseAdjunto", ReplyAction="http://tempuri.org/ISinort/EliminarbaseAdjuntoResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.AdjuntosJSON> EliminarbaseAdjuntoAsync(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarAdjuntos", ReplyAction="http://tempuri.org/ISinort/GuardarAdjuntosResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarAdjuntos", ReplyAction="http://tempuri.org/ISinort/GuardarAdjuntosResponse")]
|
||||||
AYA.SlnSinortModel.Entidades.AdjuntosJSON GuardarAdjuntos(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
AYA.SlnSinortModel.Entidades.AdjuntosJSON GuardarAdjuntos(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
||||||
|
|
||||||
|
|
@ -82,87 +184,62 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.DocumentosAdjuntos[]> ObtenerAdjuntosAsync(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.DocumentosAdjuntos[]> ObtenerAdjuntosAsync(AYA.SlnSinortModel.Entidades.AdjuntosJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerTareasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerTareasPendientesResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerTareasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerTareasPendientesResponse")]
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.ComentariosProyecto))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.DocumentosAdjuntos))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.BitacoraDocumentos[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.BitacoraDocumentos))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Documentos))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoDocumento))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Documentos[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.DocumentosAdjuntos[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaTipoDocumento[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaTipoDocumento))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Calendario[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Calendario))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.ProyectoNormativo))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.ComentariosProyecto[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Convocatoria[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Convocatoria))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Usuario))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.RolesUsuario[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.RolesUsuario))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Roles))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.RolesPantallas[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.RolesPantallas))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Pantallas))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Solicitud[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Solicitud))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.AreaAplicacionDocumentoTecnico))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Estado))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.FichaTecnica[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.FichaTecnica))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Aplicacion))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoAplicacion))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Aplicacion[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Contenido))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaContenido[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaContenido))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.DocumentoTecnico))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Emisor))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoEmisor))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Emisor[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.FichaTecnicaPalabraClave[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.FichaTecnicaPalabraClave))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.PalabraClave))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.GrupoTematico))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaGrupoTematico[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaGrupoTematico))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoEstado))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Estado[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoSolicitud))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TareasPendientes[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TareasPendientes))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoProyecto))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.ProyectoNormativo[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.PlantillaEmail))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Pantallas[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.BaseJson))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.EventosJSON[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.EventosJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.AdjuntosJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.NotificacionesJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.LoginJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(Atesa.Utilitarios.AtesaJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(string[]))]
|
|
||||||
AYA.SlnSinortModel.Sinort.TareasPendientes[] ObtenerTareasPendientes(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
AYA.SlnSinortModel.Sinort.TareasPendientes[] ObtenerTareasPendientes(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerTareasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerTareasPendientesResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerTareasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerTareasPendientesResponse")]
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.TareasPendientes[]> ObtenerTareasPendientesAsync(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.TareasPendientes[]> ObtenerTareasPendientesAsync(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerSolicitudTareasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerSolicitudTareasPendientesResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.SolicitudJSON ObtenerSolicitudTareasPendientes(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerSolicitudTareasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerSolicitudTareasPendientesResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> ObtenerSolicitudTareasPendientesAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/InsertarActualizarTareasPendientes", ReplyAction="http://tempuri.org/ISinort/InsertarActualizarTareasPendientesResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/InsertarActualizarTareasPendientes", ReplyAction="http://tempuri.org/ISinort/InsertarActualizarTareasPendientesResponse")]
|
||||||
AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON InsertarActualizarTareasPendientes(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON InsertarActualizarTareasPendientes(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/InsertarActualizarTareasPendientes", ReplyAction="http://tempuri.org/ISinort/InsertarActualizarTareasPendientesResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/InsertarActualizarTareasPendientes", ReplyAction="http://tempuri.org/ISinort/InsertarActualizarTareasPendientesResponse")]
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON> InsertarActualizarTareasPendientesAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON> InsertarActualizarTareasPendientesAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/InsertarActualizarTareasPendientes2", ReplyAction="http://tempuri.org/ISinort/InsertarActualizarTareasPendientes2Response")]
|
||||||
|
AYA.SlnSinortModel.Entidades.SolicitudJSON InsertarActualizarTareasPendientes2(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/InsertarActualizarTareasPendientes2", ReplyAction="http://tempuri.org/ISinort/InsertarActualizarTareasPendientes2Response")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> InsertarActualizarTareasPendientes2Async(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerCantidadTareasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerCantidadTareasPendientesResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerCantidadTareasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerCantidadTareasPendientesResponse")]
|
||||||
AYA.SlnSinortModel.Entidades.NotificacionesJSON ObtenerCantidadTareasPendientes(AYA.SlnSinortModel.Entidades.NotificacionesJSON model);
|
AYA.SlnSinortModel.Entidades.NotificacionesJSON ObtenerCantidadTareasPendientes(AYA.SlnSinortModel.Entidades.NotificacionesJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerCantidadTareasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerCantidadTareasPendientesResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerCantidadTareasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerCantidadTareasPendientesResponse")]
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.NotificacionesJSON> ObtenerCantidadTareasPendientesAsync(AYA.SlnSinortModel.Entidades.NotificacionesJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.NotificacionesJSON> ObtenerCantidadTareasPendientesAsync(AYA.SlnSinortModel.Entidades.NotificacionesJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerGotitasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerGotitasPendientesResponse")]
|
||||||
|
AYA.SlnSinortModel.Sinort.GotitasNormativas[] ObtenerGotitasPendientes(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerGotitasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerGotitasPendientesResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.GotitasNormativas[]> ObtenerGotitasPendientesAsync(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/InsertarGotitasNormativas", ReplyAction="http://tempuri.org/ISinort/InsertarGotitasNormativasResponse")]
|
||||||
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON))]
|
||||||
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.AdjuntosJSON))]
|
||||||
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.CatalogosPostJSON))]
|
||||||
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.SolicitudJSON))]
|
||||||
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.NotificacionesJSON))]
|
||||||
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.LoginJSON))]
|
||||||
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.EncuestaJSON))]
|
||||||
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.UExternoJSON))]
|
||||||
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON))]
|
||||||
|
AYA.SlnSinortModel.Entidades.BaseJson InsertarGotitasNormativas(AYA.SlnSinortModel.Sinort.GotitasNormativas model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/InsertarGotitasNormativas", ReplyAction="http://tempuri.org/ISinort/InsertarGotitasNormativasResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.BaseJson> InsertarGotitasNormativasAsync(AYA.SlnSinortModel.Sinort.GotitasNormativas model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerCantidadGotitasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerCantidadGotitasPendientesResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.NotificacionesJSON ObtenerCantidadGotitasPendientes(AYA.SlnSinortModel.Entidades.NotificacionesJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerCantidadGotitasPendientes", ReplyAction="http://tempuri.org/ISinort/ObtenerCantidadGotitasPendientesResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.NotificacionesJSON> ObtenerCantidadGotitasPendientesAsync(AYA.SlnSinortModel.Entidades.NotificacionesJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerUsuarioAD", ReplyAction="http://tempuri.org/ISinort/ObtenerUsuarioADResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerUsuarioAD", ReplyAction="http://tempuri.org/ISinort/ObtenerUsuarioADResponse")]
|
||||||
AYA.SlnSinortModel.Entidades.LoginJSON ObtenerUsuarioAD(AYA.SlnSinortModel.Entidades.LoginJSON model);
|
AYA.SlnSinortModel.Entidades.LoginJSON ObtenerUsuarioAD(AYA.SlnSinortModel.Entidades.LoginJSON model);
|
||||||
|
|
||||||
|
|
@ -170,87 +247,112 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.LoginJSON> ObtenerUsuarioADAsync(AYA.SlnSinortModel.Entidades.LoginJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.LoginJSON> ObtenerUsuarioADAsync(AYA.SlnSinortModel.Entidades.LoginJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/VerificarUsuarioBD", ReplyAction="http://tempuri.org/ISinort/VerificarUsuarioBDResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/VerificarUsuarioBD", ReplyAction="http://tempuri.org/ISinort/VerificarUsuarioBDResponse")]
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.ComentariosProyecto))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.DocumentosAdjuntos))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.BitacoraDocumentos[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.BitacoraDocumentos))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Documentos))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoDocumento))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Documentos[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.DocumentosAdjuntos[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaTipoDocumento[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaTipoDocumento))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Calendario[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Calendario))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.ProyectoNormativo))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.ComentariosProyecto[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Convocatoria[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Convocatoria))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Usuario))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.RolesUsuario[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.RolesUsuario))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Roles))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.RolesPantallas[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.RolesPantallas))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Pantallas))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Solicitud[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Solicitud))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.AreaAplicacionDocumentoTecnico))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Estado))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.FichaTecnica[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.FichaTecnica))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Aplicacion))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoAplicacion))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Aplicacion[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Contenido))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaContenido[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaContenido))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.DocumentoTecnico))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Emisor))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoEmisor))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Emisor[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.FichaTecnicaPalabraClave[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.FichaTecnicaPalabraClave))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.PalabraClave))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.GrupoTematico))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaGrupoTematico[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.SubCategoriaGrupoTematico))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoEstado))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Estado[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoSolicitud))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TareasPendientes[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TareasPendientes))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.TipoProyecto))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.ProyectoNormativo[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.PlantillaEmail))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Sinort.Pantallas[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.BaseJson))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.EventosJSON[]))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.EventosJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.AdjuntosJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.NotificacionesJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.LoginJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(Atesa.Utilitarios.AtesaJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(string[]))]
|
|
||||||
AYA.SlnSinortModel.Entidades.CatalogosPostJSON VerificarUsuarioBD(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
AYA.SlnSinortModel.Entidades.CatalogosPostJSON VerificarUsuarioBD(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/VerificarUsuarioBD", ReplyAction="http://tempuri.org/ISinort/VerificarUsuarioBDResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/VerificarUsuarioBD", ReplyAction="http://tempuri.org/ISinort/VerificarUsuarioBDResponse")]
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.CatalogosPostJSON> VerificarUsuarioBDAsync(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.CatalogosPostJSON> VerificarUsuarioBDAsync(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerPermisos", ReplyAction="http://tempuri.org/ISinort/ObtenerPermisosResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/VerificarUsuarioBDExterno", ReplyAction="http://tempuri.org/ISinort/VerificarUsuarioBDExternoResponse")]
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.BaseJson))]
|
AYA.SlnSinortModel.Entidades.CatalogosPostJSON VerificarUsuarioBDExterno(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.AdjuntosJSON))]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/VerificarUsuarioBDExterno", ReplyAction="http://tempuri.org/ISinort/VerificarUsuarioBDExternoResponse")]
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.CatalogosPostJSON))]
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.CatalogosPostJSON> VerificarUsuarioBDExternoAsync(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.NotificacionesJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.LoginJSON))]
|
|
||||||
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON))]
|
|
||||||
AYA.SlnSinortModel.Sinort.Pantallas[] ObtenerPermisos(Atesa.Utilitarios.AtesaJSON model);
|
|
||||||
|
|
||||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerPermisos", ReplyAction="http://tempuri.org/ISinort/ObtenerPermisosResponse")]
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerPermisos", ReplyAction="http://tempuri.org/ISinort/ObtenerPermisosResponse")]
|
||||||
System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.Pantallas[]> ObtenerPermisosAsync(Atesa.Utilitarios.AtesaJSON model);
|
AYA.SlnSinortModel.Sinort.Pantallas[] ObtenerPermisos(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerPermisos", ReplyAction="http://tempuri.org/ISinort/ObtenerPermisosResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.Pantallas[]> ObtenerPermisosAsync(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarSolicitud", ReplyAction="http://tempuri.org/ISinort/GuardarSolicitudResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.SolicitudJSON GuardarSolicitud(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarSolicitud", ReplyAction="http://tempuri.org/ISinort/GuardarSolicitudResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> GuardarSolicitudAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerSolicitud", ReplyAction="http://tempuri.org/ISinort/ObtenerSolicitudResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.SolicitudJSON ObtenerSolicitud(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerSolicitud", ReplyAction="http://tempuri.org/ISinort/ObtenerSolicitudResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> ObtenerSolicitudAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerSolicitudUsuario", ReplyAction="http://tempuri.org/ISinort/ObtenerSolicitudUsuarioResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.SolicitudJSON ObtenerSolicitudUsuario(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerSolicitudUsuario", ReplyAction="http://tempuri.org/ISinort/ObtenerSolicitudUsuarioResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> ObtenerSolicitudUsuarioAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerSolicitudCompraAutorizadas", ReplyAction="http://tempuri.org/ISinort/ObtenerSolicitudCompraAutorizadasResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.SolicitudJSON ObtenerSolicitudCompraAutorizadas(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerSolicitudCompraAutorizadas", ReplyAction="http://tempuri.org/ISinort/ObtenerSolicitudCompraAutorizadasResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> ObtenerSolicitudCompraAutorizadasAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerPorTipo", ReplyAction="http://tempuri.org/ISinort/ObtenerPorTipoResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.SolicitudJSON ObtenerPorTipo(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerPorTipo", ReplyAction="http://tempuri.org/ISinort/ObtenerPorTipoResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> ObtenerPorTipoAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EnviarCorreoSolicitud", ReplyAction="http://tempuri.org/ISinort/EnviarCorreoSolicitudResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.SolicitudJSON EnviarCorreoSolicitud(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EnviarCorreoSolicitud", ReplyAction="http://tempuri.org/ISinort/EnviarCorreoSolicitudResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> EnviarCorreoSolicitudAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarPregunta", ReplyAction="http://tempuri.org/ISinort/GuardarPreguntaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.EncuestaJSON GuardarPregunta(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarPregunta", ReplyAction="http://tempuri.org/ISinort/GuardarPreguntaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> GuardarPreguntaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerEncuestas", ReplyAction="http://tempuri.org/ISinort/ObtenerEncuestasResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.EncuestaJSON ObtenerEncuestas(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerEncuestas", ReplyAction="http://tempuri.org/ISinort/ObtenerEncuestasResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> ObtenerEncuestasAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerEncabezadoEncuesta", ReplyAction="http://tempuri.org/ISinort/ObtenerEncabezadoEncuestaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.EncuestaJSON ObtenerEncabezadoEncuesta(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerEncabezadoEncuesta", ReplyAction="http://tempuri.org/ISinort/ObtenerEncabezadoEncuestaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> ObtenerEncabezadoEncuestaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerDetalleEncuesta", ReplyAction="http://tempuri.org/ISinort/ObtenerDetalleEncuestaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.EncuestaJSON ObtenerDetalleEncuesta(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerDetalleEncuesta", ReplyAction="http://tempuri.org/ISinort/ObtenerDetalleEncuestaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> ObtenerDetalleEncuestaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarEncuesta", ReplyAction="http://tempuri.org/ISinort/GuardarEncuestaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.EncuestaJSON GuardarEncuesta(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarEncuesta", ReplyAction="http://tempuri.org/ISinort/GuardarEncuestaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> GuardarEncuestaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarRespuestaEncuesta", ReplyAction="http://tempuri.org/ISinort/GuardarRespuestaEncuestaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.EncuestaJSON GuardarRespuestaEncuesta(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarRespuestaEncuesta", ReplyAction="http://tempuri.org/ISinort/GuardarRespuestaEncuestaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> GuardarRespuestaEncuestaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarUsuariosEncuesta", ReplyAction="http://tempuri.org/ISinort/GuardarUsuariosEncuestaResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.EncuestaJSON GuardarUsuariosEncuesta(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/GuardarUsuariosEncuesta", ReplyAction="http://tempuri.org/ISinort/GuardarUsuariosEncuestaResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> GuardarUsuariosEncuestaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerUsuariosEncuestas", ReplyAction="http://tempuri.org/ISinort/ObtenerUsuariosEncuestasResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.EncuestaJSON ObtenerUsuariosEncuestas(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/ObtenerUsuariosEncuestas", ReplyAction="http://tempuri.org/ISinort/ObtenerUsuariosEncuestasResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> ObtenerUsuariosEncuestasAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EnviarCorreoAExterno", ReplyAction="http://tempuri.org/ISinort/EnviarCorreoAExternoResponse")]
|
||||||
|
AYA.SlnSinortModel.Entidades.UExternoJSON EnviarCorreoAExterno(AYA.SlnSinortModel.Entidades.UExternoJSON model);
|
||||||
|
|
||||||
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISinort/EnviarCorreoAExterno", ReplyAction="http://tempuri.org/ISinort/EnviarCorreoAExternoResponse")]
|
||||||
|
System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.UExternoJSON> EnviarCorreoAExternoAsync(AYA.SlnSinortModel.Entidades.UExternoJSON model);
|
||||||
}
|
}
|
||||||
|
|
||||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
||||||
|
|
@ -288,6 +390,14 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
return base.Channel.GuardarProyectoNormativoAsync(model);
|
return base.Channel.GuardarProyectoNormativoAsync(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public string BuscarNombreProyecto(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
||||||
|
return base.Channel.BuscarNombreProyecto(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<string> BuscarNombreProyectoAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
||||||
|
return base.Channel.BuscarNombreProyectoAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
public AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON GuardarConvocatoriaProyectoNormativo(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
public AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON GuardarConvocatoriaProyectoNormativo(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
||||||
return base.Channel.GuardarConvocatoriaProyectoNormativo(model);
|
return base.Channel.GuardarConvocatoriaProyectoNormativo(model);
|
||||||
}
|
}
|
||||||
|
|
@ -296,6 +406,14 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
return base.Channel.GuardarConvocatoriaProyectoNormativoAsync(model);
|
return base.Channel.GuardarConvocatoriaProyectoNormativoAsync(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Sinort.Convocatoria[] ActualizarConvocados(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
||||||
|
return base.Channel.ActualizarConvocados(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.Convocatoria[]> ActualizarConvocadosAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
||||||
|
return base.Channel.ActualizarConvocadosAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
public AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON ObtenerProyectoNormativo(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
public AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON ObtenerProyectoNormativo(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
||||||
return base.Channel.ObtenerProyectoNormativo(model);
|
return base.Channel.ObtenerProyectoNormativo(model);
|
||||||
}
|
}
|
||||||
|
|
@ -328,6 +446,14 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
return base.Channel.GuardarEventoProyectoNormativoAsync(model);
|
return base.Channel.GuardarEventoProyectoNormativoAsync(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON EliminarConvocatoriaProyectoNormativo(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
||||||
|
return base.Channel.EliminarConvocatoriaProyectoNormativo(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON> EliminarConvocatoriaProyectoNormativoAsync(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
||||||
|
return base.Channel.EliminarConvocatoriaProyectoNormativoAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnica(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnica(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
return base.Channel.GuardarFichaTecnica(model);
|
return base.Channel.GuardarFichaTecnica(model);
|
||||||
}
|
}
|
||||||
|
|
@ -336,6 +462,22 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
return base.Channel.GuardarFichaTecnicaAsync(model);
|
return base.Channel.GuardarFichaTecnicaAsync(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnicaHistorico(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.GuardarFichaTecnicaHistorico(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> GuardarFichaTecnicaHistoricoAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.GuardarFichaTecnicaHistoricoAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnicaHistoricoPalabraClave(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.GuardarFichaTecnicaHistoricoPalabraClave(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> GuardarFichaTecnicaHistoricoPalabraClaveAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.GuardarFichaTecnicaHistoricoPalabraClaveAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnicaPalabraClave(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON GuardarFichaTecnicaPalabraClave(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
return base.Channel.GuardarFichaTecnicaPalabraClave(model);
|
return base.Channel.GuardarFichaTecnicaPalabraClave(model);
|
||||||
}
|
}
|
||||||
|
|
@ -344,6 +486,86 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
return base.Channel.GuardarFichaTecnicaPalabraClaveAsync(model);
|
return base.Channel.GuardarFichaTecnicaPalabraClaveAsync(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerFichaTecnica(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerFichaTecnica(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerFichaTecnicaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerFichaTecnicaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerSitios(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerSitios(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerSitiosAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerSitiosAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerEliminadas(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerEliminadas(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerEliminadasAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerEliminadasAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerInactivas(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerInactivas(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerInactivasAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerInactivasAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON EnviarCorreoFichaTecnica(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.EnviarCorreoFichaTecnica(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> EnviarCorreoFichaTecnicaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.EnviarCorreoFichaTecnicaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON EliminarFichaTecnica(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.EliminarFichaTecnica(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> EliminarFichaTecnicaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.EliminarFichaTecnicaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerFichaTecnicaHistorico(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerFichaTecnicaHistorico(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerFichaTecnicaHistoricoAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerFichaTecnicaHistoricoAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON InsertarActualizarFichaTecnicaAlerta(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.InsertarActualizarFichaTecnicaAlerta(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> InsertarActualizarFichaTecnicaAlertaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.InsertarActualizarFichaTecnicaAlertaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerFichaTecnicaAlerta(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerFichaTecnicaAlerta(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerFichaTecnicaAlertaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerFichaTecnicaAlertaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.FichaTecnicaJSON ObtenerFichaAlerta(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerFichaAlerta(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.FichaTecnicaJSON> ObtenerFichaAlertaAsync(AYA.SlnSinortModel.Entidades.FichaTecnicaJSON model) {
|
||||||
|
return base.Channel.ObtenerFichaAlertaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
public AYA.SlnSinortModel.Entidades.AdjuntosJSON RemoverAdjunto(AYA.SlnSinortModel.Entidades.AdjuntosJSON model) {
|
public AYA.SlnSinortModel.Entidades.AdjuntosJSON RemoverAdjunto(AYA.SlnSinortModel.Entidades.AdjuntosJSON model) {
|
||||||
return base.Channel.RemoverAdjunto(model);
|
return base.Channel.RemoverAdjunto(model);
|
||||||
}
|
}
|
||||||
|
|
@ -352,6 +574,22 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
return base.Channel.RemoverAdjuntoAsync(model);
|
return base.Channel.RemoverAdjuntoAsync(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.AdjuntosJSON CopiarAdjunto(AYA.SlnSinortModel.Entidades.AdjuntosJSON model) {
|
||||||
|
return base.Channel.CopiarAdjunto(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.AdjuntosJSON> CopiarAdjuntoAsync(AYA.SlnSinortModel.Entidades.AdjuntosJSON model) {
|
||||||
|
return base.Channel.CopiarAdjuntoAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.AdjuntosJSON EliminarbaseAdjunto(AYA.SlnSinortModel.Entidades.AdjuntosJSON model) {
|
||||||
|
return base.Channel.EliminarbaseAdjunto(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.AdjuntosJSON> EliminarbaseAdjuntoAsync(AYA.SlnSinortModel.Entidades.AdjuntosJSON model) {
|
||||||
|
return base.Channel.EliminarbaseAdjuntoAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
public AYA.SlnSinortModel.Entidades.AdjuntosJSON GuardarAdjuntos(AYA.SlnSinortModel.Entidades.AdjuntosJSON model) {
|
public AYA.SlnSinortModel.Entidades.AdjuntosJSON GuardarAdjuntos(AYA.SlnSinortModel.Entidades.AdjuntosJSON model) {
|
||||||
return base.Channel.GuardarAdjuntos(model);
|
return base.Channel.GuardarAdjuntos(model);
|
||||||
}
|
}
|
||||||
|
|
@ -376,6 +614,14 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
return base.Channel.ObtenerTareasPendientesAsync(model);
|
return base.Channel.ObtenerTareasPendientesAsync(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.SolicitudJSON ObtenerSolicitudTareasPendientes(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.ObtenerSolicitudTareasPendientes(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> ObtenerSolicitudTareasPendientesAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.ObtenerSolicitudTareasPendientesAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
public AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON InsertarActualizarTareasPendientes(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
public AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON InsertarActualizarTareasPendientes(AYA.SlnSinortModel.Entidades.ProyectoNormativoJSON model) {
|
||||||
return base.Channel.InsertarActualizarTareasPendientes(model);
|
return base.Channel.InsertarActualizarTareasPendientes(model);
|
||||||
}
|
}
|
||||||
|
|
@ -384,6 +630,14 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
return base.Channel.InsertarActualizarTareasPendientesAsync(model);
|
return base.Channel.InsertarActualizarTareasPendientesAsync(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.SolicitudJSON InsertarActualizarTareasPendientes2(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.InsertarActualizarTareasPendientes2(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> InsertarActualizarTareasPendientes2Async(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.InsertarActualizarTareasPendientes2Async(model);
|
||||||
|
}
|
||||||
|
|
||||||
public AYA.SlnSinortModel.Entidades.NotificacionesJSON ObtenerCantidadTareasPendientes(AYA.SlnSinortModel.Entidades.NotificacionesJSON model) {
|
public AYA.SlnSinortModel.Entidades.NotificacionesJSON ObtenerCantidadTareasPendientes(AYA.SlnSinortModel.Entidades.NotificacionesJSON model) {
|
||||||
return base.Channel.ObtenerCantidadTareasPendientes(model);
|
return base.Channel.ObtenerCantidadTareasPendientes(model);
|
||||||
}
|
}
|
||||||
|
|
@ -392,6 +646,30 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
return base.Channel.ObtenerCantidadTareasPendientesAsync(model);
|
return base.Channel.ObtenerCantidadTareasPendientesAsync(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Sinort.GotitasNormativas[] ObtenerGotitasPendientes(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model) {
|
||||||
|
return base.Channel.ObtenerGotitasPendientes(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.GotitasNormativas[]> ObtenerGotitasPendientesAsync(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model) {
|
||||||
|
return base.Channel.ObtenerGotitasPendientesAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.BaseJson InsertarGotitasNormativas(AYA.SlnSinortModel.Sinort.GotitasNormativas model) {
|
||||||
|
return base.Channel.InsertarGotitasNormativas(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.BaseJson> InsertarGotitasNormativasAsync(AYA.SlnSinortModel.Sinort.GotitasNormativas model) {
|
||||||
|
return base.Channel.InsertarGotitasNormativasAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.NotificacionesJSON ObtenerCantidadGotitasPendientes(AYA.SlnSinortModel.Entidades.NotificacionesJSON model) {
|
||||||
|
return base.Channel.ObtenerCantidadGotitasPendientes(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.NotificacionesJSON> ObtenerCantidadGotitasPendientesAsync(AYA.SlnSinortModel.Entidades.NotificacionesJSON model) {
|
||||||
|
return base.Channel.ObtenerCantidadGotitasPendientesAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
public AYA.SlnSinortModel.Entidades.LoginJSON ObtenerUsuarioAD(AYA.SlnSinortModel.Entidades.LoginJSON model) {
|
public AYA.SlnSinortModel.Entidades.LoginJSON ObtenerUsuarioAD(AYA.SlnSinortModel.Entidades.LoginJSON model) {
|
||||||
return base.Channel.ObtenerUsuarioAD(model);
|
return base.Channel.ObtenerUsuarioAD(model);
|
||||||
}
|
}
|
||||||
|
|
@ -408,12 +686,140 @@ namespace AYA.SlnSinort.ServicioSinortWCF {
|
||||||
return base.Channel.VerificarUsuarioBDAsync(model);
|
return base.Channel.VerificarUsuarioBDAsync(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
public AYA.SlnSinortModel.Sinort.Pantallas[] ObtenerPermisos(Atesa.Utilitarios.AtesaJSON model) {
|
public AYA.SlnSinortModel.Entidades.CatalogosPostJSON VerificarUsuarioBDExterno(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model) {
|
||||||
|
return base.Channel.VerificarUsuarioBDExterno(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.CatalogosPostJSON> VerificarUsuarioBDExternoAsync(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model) {
|
||||||
|
return base.Channel.VerificarUsuarioBDExternoAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Sinort.Pantallas[] ObtenerPermisos(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model) {
|
||||||
return base.Channel.ObtenerPermisos(model);
|
return base.Channel.ObtenerPermisos(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.Pantallas[]> ObtenerPermisosAsync(Atesa.Utilitarios.AtesaJSON model) {
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Sinort.Pantallas[]> ObtenerPermisosAsync(AYA.SlnSinortModel.Entidades.CatalogosPostJSON model) {
|
||||||
return base.Channel.ObtenerPermisosAsync(model);
|
return base.Channel.ObtenerPermisosAsync(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.SolicitudJSON GuardarSolicitud(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.GuardarSolicitud(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> GuardarSolicitudAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.GuardarSolicitudAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.SolicitudJSON ObtenerSolicitud(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.ObtenerSolicitud(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> ObtenerSolicitudAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.ObtenerSolicitudAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.SolicitudJSON ObtenerSolicitudUsuario(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.ObtenerSolicitudUsuario(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> ObtenerSolicitudUsuarioAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.ObtenerSolicitudUsuarioAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.SolicitudJSON ObtenerSolicitudCompraAutorizadas(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.ObtenerSolicitudCompraAutorizadas(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> ObtenerSolicitudCompraAutorizadasAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.ObtenerSolicitudCompraAutorizadasAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.SolicitudJSON ObtenerPorTipo(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.ObtenerPorTipo(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> ObtenerPorTipoAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.ObtenerPorTipoAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.SolicitudJSON EnviarCorreoSolicitud(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.EnviarCorreoSolicitud(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.SolicitudJSON> EnviarCorreoSolicitudAsync(AYA.SlnSinortModel.Entidades.SolicitudJSON model) {
|
||||||
|
return base.Channel.EnviarCorreoSolicitudAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.EncuestaJSON GuardarPregunta(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.GuardarPregunta(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> GuardarPreguntaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.GuardarPreguntaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.EncuestaJSON ObtenerEncuestas(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.ObtenerEncuestas(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> ObtenerEncuestasAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.ObtenerEncuestasAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.EncuestaJSON ObtenerEncabezadoEncuesta(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.ObtenerEncabezadoEncuesta(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> ObtenerEncabezadoEncuestaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.ObtenerEncabezadoEncuestaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.EncuestaJSON ObtenerDetalleEncuesta(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.ObtenerDetalleEncuesta(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> ObtenerDetalleEncuestaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.ObtenerDetalleEncuestaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.EncuestaJSON GuardarEncuesta(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.GuardarEncuesta(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> GuardarEncuestaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.GuardarEncuestaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.EncuestaJSON GuardarRespuestaEncuesta(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.GuardarRespuestaEncuesta(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> GuardarRespuestaEncuestaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.GuardarRespuestaEncuestaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.EncuestaJSON GuardarUsuariosEncuesta(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.GuardarUsuariosEncuesta(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> GuardarUsuariosEncuestaAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.GuardarUsuariosEncuestaAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.EncuestaJSON ObtenerUsuariosEncuestas(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.ObtenerUsuariosEncuestas(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.EncuestaJSON> ObtenerUsuariosEncuestasAsync(AYA.SlnSinortModel.Entidades.EncuestaJSON model) {
|
||||||
|
return base.Channel.ObtenerUsuariosEncuestasAsync(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AYA.SlnSinortModel.Entidades.UExternoJSON EnviarCorreoAExterno(AYA.SlnSinortModel.Entidades.UExternoJSON model) {
|
||||||
|
return base.Channel.EnviarCorreoAExterno(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
public System.Threading.Tasks.Task<AYA.SlnSinortModel.Entidades.UExternoJSON> EnviarCorreoAExternoAsync(AYA.SlnSinortModel.Entidades.UExternoJSON model) {
|
||||||
|
return base.Channel.EnviarCorreoAExternoAsync(model);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,17 +19,17 @@
|
||||||
<ServiceContractMappings />
|
<ServiceContractMappings />
|
||||||
</ClientOptions>
|
</ClientOptions>
|
||||||
<MetadataSources>
|
<MetadataSources>
|
||||||
<MetadataSource Address="http://10.50.1.123:2070/Sinort.svc" Protocol="http" SourceId="1" />
|
<MetadataSource Address="http://aya-vsrv-wstt:2005/Sinort.svc" Protocol="http" SourceId="1" />
|
||||||
</MetadataSources>
|
</MetadataSources>
|
||||||
<Metadata>
|
<Metadata>
|
||||||
<MetadataFile FileName="Sinort.xsd" MetadataType="Schema" ID="48137137-eecb-4626-9ef7-7f57df139390" SourceId="1" SourceUrl="http://10.50.1.123:2070/Sinort.svc?xsd=xsd5" />
|
<MetadataFile FileName="Sinort6.xsd" MetadataType="Schema" ID="0ef0483a-10d8-400c-8aea-0bc9a1fd4924" SourceId="1" SourceUrl="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd1" />
|
||||||
<MetadataFile FileName="Sinort1.xsd" MetadataType="Schema" ID="953e027e-75d9-456e-be35-a243a551b2f0" SourceId="1" SourceUrl="http://10.50.1.123:2070/Sinort.svc?xsd=xsd2" />
|
<MetadataFile FileName="Sinort61.xsd" MetadataType="Schema" ID="84e49177-b02f-4f8f-b86f-70a0eb01c136" SourceId="1" SourceUrl="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd0" />
|
||||||
<MetadataFile FileName="Sinort.wsdl" MetadataType="Wsdl" ID="0f95a3eb-1a4b-41d7-a326-769d71b65a2e" SourceId="1" SourceUrl="http://10.50.1.123:2070/Sinort.svc?wsdl" />
|
<MetadataFile FileName="Sinort62.xsd" MetadataType="Schema" ID="ff5d3548-465c-4152-9fd4-5363ed3692d4" SourceId="1" SourceUrl="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd3" />
|
||||||
<MetadataFile FileName="Sinort2.xsd" MetadataType="Schema" ID="958ebeaa-d656-43dd-8532-d7e5ba35ccaa" SourceId="1" SourceUrl="http://10.50.1.123:2070/Sinort.svc?xsd=xsd3" />
|
<MetadataFile FileName="Sinort63.xsd" MetadataType="Schema" ID="d4024ce7-8e4b-46bc-89b4-a6f112907265" SourceId="1" SourceUrl="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd2" />
|
||||||
<MetadataFile FileName="Sinort3.xsd" MetadataType="Schema" ID="3ffd142b-7598-4ae8-a2a6-70b329db3a9b" SourceId="1" SourceUrl="http://10.50.1.123:2070/Sinort.svc?xsd=xsd1" />
|
<MetadataFile FileName="Sinort64.xsd" MetadataType="Schema" ID="40f99e7f-9820-4813-8fd2-d116a106b04a" SourceId="1" SourceUrl="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd5" />
|
||||||
<MetadataFile FileName="Sinort.disco" MetadataType="Disco" ID="e7b82df0-bf3a-4add-aa5c-b54456f4fd5f" SourceId="1" SourceUrl="http://10.50.1.123:2070/Sinort.svc?disco" />
|
<MetadataFile FileName="Sinort65.xsd" MetadataType="Schema" ID="8cd5a77f-baa9-4214-9488-0b3a4834ba9c" SourceId="1" SourceUrl="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd4" />
|
||||||
<MetadataFile FileName="Sinort4.xsd" MetadataType="Schema" ID="0dc959ee-8087-46fc-a589-4b1c7b8ec94e" SourceId="1" SourceUrl="http://10.50.1.123:2070/Sinort.svc?xsd=xsd0" />
|
<MetadataFile FileName="Sinort1.wsdl" MetadataType="Wsdl" ID="2f75e238-0e8e-449f-b176-f61b976df56d" SourceId="1" SourceUrl="http://aya-vsrv-wstt:2005/Sinort.svc?wsdl" />
|
||||||
<MetadataFile FileName="Sinort5.xsd" MetadataType="Schema" ID="565710df-d5dd-4a88-969b-ef1c95486916" SourceId="1" SourceUrl="http://10.50.1.123:2070/Sinort.svc?xsd=xsd4" />
|
<MetadataFile FileName="Sinort1.disco" MetadataType="Disco" ID="53962db3-fcca-45b2-8704-54742188083b" SourceId="1" SourceUrl="http://aya-vsrv-wstt:2005/Sinort.svc?disco" />
|
||||||
</Metadata>
|
</Metadata>
|
||||||
<Extensions>
|
<Extensions>
|
||||||
<ExtensionFile FileName="configuration91.svcinfo" Name="configuration91.svcinfo" />
|
<ExtensionFile FileName="configuration91.svcinfo" Name="configuration91.svcinfo" />
|
||||||
|
|
|
||||||
|
|
@ -1,357 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<wsdl:definitions xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:tns="http://tempuri.org/" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="Sinort" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
|
||||||
<wsp:Policy wsu:Id="WSHttpBinding_ISinort_policy">
|
|
||||||
<wsp:ExactlyOne>
|
|
||||||
<wsp:All>
|
|
||||||
<wsaw:UsingAddressing />
|
|
||||||
</wsp:All>
|
|
||||||
</wsp:ExactlyOne>
|
|
||||||
</wsp:Policy>
|
|
||||||
<wsdl:types>
|
|
||||||
<xsd:schema targetNamespace="http://tempuri.org/Imports">
|
|
||||||
<xsd:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd0" namespace="http://tempuri.org/" />
|
|
||||||
<xsd:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
|
|
||||||
<xsd:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" />
|
|
||||||
<xsd:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd3" namespace="http://schemas.datacontract.org/2004/07/Atesa.Utilitarios" />
|
|
||||||
<xsd:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd4" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
|
|
||||||
<xsd:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd5" namespace="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" />
|
|
||||||
</xsd:schema>
|
|
||||||
</wsdl:types>
|
|
||||||
<wsdl:message name="ISinort_GuardarProyectoNormativo_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarProyectoNormativo" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarProyectoNormativo_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarProyectoNormativoResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarConvocatoriaProyectoNormativo_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarConvocatoriaProyectoNormativo" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarConvocatoriaProyectoNormativo_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarConvocatoriaProyectoNormativoResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerProyectoNormativo_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerProyectoNormativo" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerProyectoNormativo_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerProyectoNormativoResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_EnviarCorreo_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:EnviarCorreo" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_EnviarCorreo_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:EnviarCorreoResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarComentarioProyectoNormativo_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarComentarioProyectoNormativo" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarComentarioProyectoNormativo_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarComentarioProyectoNormativoResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarEventoProyectoNormativo_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarEventoProyectoNormativo" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarEventoProyectoNormativo_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarEventoProyectoNormativoResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarFichaTecnica_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarFichaTecnica" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarFichaTecnica_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarFichaTecnicaResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarFichaTecnicaPalabraClave_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarFichaTecnicaPalabraClave" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarFichaTecnicaPalabraClave_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarFichaTecnicaPalabraClaveResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_RemoverAdjunto_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:RemoverAdjunto" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_RemoverAdjunto_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:RemoverAdjuntoResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarAdjuntos_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarAdjuntos" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_GuardarAdjuntos_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:GuardarAdjuntosResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerAdjuntos_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerAdjuntos" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerAdjuntos_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerAdjuntosResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerTareasPendientes_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerTareasPendientes" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerTareasPendientes_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerTareasPendientesResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_InsertarActualizarTareasPendientes_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:InsertarActualizarTareasPendientes" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_InsertarActualizarTareasPendientes_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:InsertarActualizarTareasPendientesResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerCantidadTareasPendientes_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerCantidadTareasPendientes" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerCantidadTareasPendientes_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerCantidadTareasPendientesResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerUsuarioAD_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerUsuarioAD" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerUsuarioAD_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerUsuarioADResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_VerificarUsuarioBD_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:VerificarUsuarioBD" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_VerificarUsuarioBD_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:VerificarUsuarioBDResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerPermisos_InputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerPermisos" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:message name="ISinort_ObtenerPermisos_OutputMessage">
|
|
||||||
<wsdl:part name="parameters" element="tns:ObtenerPermisosResponse" />
|
|
||||||
</wsdl:message>
|
|
||||||
<wsdl:portType name="ISinort">
|
|
||||||
<wsdl:operation name="GuardarProyectoNormativo">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/GuardarProyectoNormativo" message="tns:ISinort_GuardarProyectoNormativo_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/GuardarProyectoNormativoResponse" message="tns:ISinort_GuardarProyectoNormativo_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarConvocatoriaProyectoNormativo">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/GuardarConvocatoriaProyectoNormativo" message="tns:ISinort_GuardarConvocatoriaProyectoNormativo_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/GuardarConvocatoriaProyectoNormativoResponse" message="tns:ISinort_GuardarConvocatoriaProyectoNormativo_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerProyectoNormativo">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/ObtenerProyectoNormativo" message="tns:ISinort_ObtenerProyectoNormativo_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/ObtenerProyectoNormativoResponse" message="tns:ISinort_ObtenerProyectoNormativo_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="EnviarCorreo">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/EnviarCorreo" message="tns:ISinort_EnviarCorreo_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/EnviarCorreoResponse" message="tns:ISinort_EnviarCorreo_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarComentarioProyectoNormativo">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/GuardarComentarioProyectoNormativo" message="tns:ISinort_GuardarComentarioProyectoNormativo_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/GuardarComentarioProyectoNormativoResponse" message="tns:ISinort_GuardarComentarioProyectoNormativo_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarEventoProyectoNormativo">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/GuardarEventoProyectoNormativo" message="tns:ISinort_GuardarEventoProyectoNormativo_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/GuardarEventoProyectoNormativoResponse" message="tns:ISinort_GuardarEventoProyectoNormativo_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarFichaTecnica">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/GuardarFichaTecnica" message="tns:ISinort_GuardarFichaTecnica_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/GuardarFichaTecnicaResponse" message="tns:ISinort_GuardarFichaTecnica_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarFichaTecnicaPalabraClave">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/GuardarFichaTecnicaPalabraClave" message="tns:ISinort_GuardarFichaTecnicaPalabraClave_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/GuardarFichaTecnicaPalabraClaveResponse" message="tns:ISinort_GuardarFichaTecnicaPalabraClave_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="RemoverAdjunto">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/RemoverAdjunto" message="tns:ISinort_RemoverAdjunto_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/RemoverAdjuntoResponse" message="tns:ISinort_RemoverAdjunto_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarAdjuntos">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/GuardarAdjuntos" message="tns:ISinort_GuardarAdjuntos_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/GuardarAdjuntosResponse" message="tns:ISinort_GuardarAdjuntos_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerAdjuntos">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/ObtenerAdjuntos" message="tns:ISinort_ObtenerAdjuntos_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/ObtenerAdjuntosResponse" message="tns:ISinort_ObtenerAdjuntos_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerTareasPendientes">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/ObtenerTareasPendientes" message="tns:ISinort_ObtenerTareasPendientes_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/ObtenerTareasPendientesResponse" message="tns:ISinort_ObtenerTareasPendientes_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="InsertarActualizarTareasPendientes">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/InsertarActualizarTareasPendientes" message="tns:ISinort_InsertarActualizarTareasPendientes_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/InsertarActualizarTareasPendientesResponse" message="tns:ISinort_InsertarActualizarTareasPendientes_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerCantidadTareasPendientes">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/ObtenerCantidadTareasPendientes" message="tns:ISinort_ObtenerCantidadTareasPendientes_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/ObtenerCantidadTareasPendientesResponse" message="tns:ISinort_ObtenerCantidadTareasPendientes_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerUsuarioAD">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/ObtenerUsuarioAD" message="tns:ISinort_ObtenerUsuarioAD_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/ObtenerUsuarioADResponse" message="tns:ISinort_ObtenerUsuarioAD_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="VerificarUsuarioBD">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/VerificarUsuarioBD" message="tns:ISinort_VerificarUsuarioBD_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/VerificarUsuarioBDResponse" message="tns:ISinort_VerificarUsuarioBD_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerPermisos">
|
|
||||||
<wsdl:input wsaw:Action="http://tempuri.org/ISinort/ObtenerPermisos" message="tns:ISinort_ObtenerPermisos_InputMessage" />
|
|
||||||
<wsdl:output wsaw:Action="http://tempuri.org/ISinort/ObtenerPermisosResponse" message="tns:ISinort_ObtenerPermisos_OutputMessage" />
|
|
||||||
</wsdl:operation>
|
|
||||||
</wsdl:portType>
|
|
||||||
<wsdl:binding name="WSHttpBinding_ISinort" type="tns:ISinort">
|
|
||||||
<wsp:PolicyReference URI="#WSHttpBinding_ISinort_policy" />
|
|
||||||
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
|
||||||
<wsdl:operation name="GuardarProyectoNormativo">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/GuardarProyectoNormativo" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarConvocatoriaProyectoNormativo">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/GuardarConvocatoriaProyectoNormativo" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerProyectoNormativo">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/ObtenerProyectoNormativo" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="EnviarCorreo">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/EnviarCorreo" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarComentarioProyectoNormativo">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/GuardarComentarioProyectoNormativo" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarEventoProyectoNormativo">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/GuardarEventoProyectoNormativo" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarFichaTecnica">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/GuardarFichaTecnica" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarFichaTecnicaPalabraClave">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/GuardarFichaTecnicaPalabraClave" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="RemoverAdjunto">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/RemoverAdjunto" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="GuardarAdjuntos">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/GuardarAdjuntos" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerAdjuntos">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/ObtenerAdjuntos" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerTareasPendientes">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/ObtenerTareasPendientes" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="InsertarActualizarTareasPendientes">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/InsertarActualizarTareasPendientes" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerCantidadTareasPendientes">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/ObtenerCantidadTareasPendientes" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerUsuarioAD">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/ObtenerUsuarioAD" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="VerificarUsuarioBD">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/VerificarUsuarioBD" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
<wsdl:operation name="ObtenerPermisos">
|
|
||||||
<soap12:operation soapAction="http://tempuri.org/ISinort/ObtenerPermisos" style="document" />
|
|
||||||
<wsdl:input>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:input>
|
|
||||||
<wsdl:output>
|
|
||||||
<soap12:body use="literal" />
|
|
||||||
</wsdl:output>
|
|
||||||
</wsdl:operation>
|
|
||||||
</wsdl:binding>
|
|
||||||
<wsdl:service name="Sinort">
|
|
||||||
<wsdl:port name="WSHttpBinding_ISinort" binding="tns:WSHttpBinding_ISinort">
|
|
||||||
<soap12:address location="http://10.50.1.123:2070/Sinort.svc/soap" />
|
|
||||||
<wsa10:EndpointReference>
|
|
||||||
<wsa10:Address>http://10.50.1.123:2070/Sinort.svc/soap</wsa10:Address>
|
|
||||||
</wsa10:EndpointReference>
|
|
||||||
</wsdl:port>
|
|
||||||
</wsdl:service>
|
|
||||||
</wsdl:definitions>
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/">
|
<discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/">
|
||||||
<contractRef ref="http://10.50.1.123:2070/Sinort.svc?wsdl" docRef="http://10.50.1.123:2070/Sinort.svc" xmlns="http://schemas.xmlsoap.org/disco/scl/" />
|
<contractRef ref="http://aya-vsrv-wstt:2005/Sinort.svc?wsdl" docRef="http://aya-vsrv-wstt:2005/Sinort.svc" xmlns="http://schemas.xmlsoap.org/disco/scl/" />
|
||||||
</discovery>
|
</discovery>
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,122 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
||||||
<xs:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd5" namespace="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" />
|
|
||||||
<xs:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd3" namespace="http://schemas.datacontract.org/2004/07/Atesa.Utilitarios" />
|
|
||||||
<xs:complexType name="ProyectoNormativoJSON">
|
|
||||||
<xs:complexContent mixed="false">
|
|
||||||
<xs:extension base="tns:BaseJson">
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="Comentario" nillable="true" type="q1:ComentariosProyecto" />
|
|
||||||
<xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="Convocado" nillable="true" type="q2:Convocatoria" />
|
|
||||||
<xs:element xmlns:q3="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="Evento" nillable="true" type="q3:Calendario" />
|
|
||||||
<xs:element minOccurs="0" name="EventosJSON" nillable="true" type="tns:ArrayOfEventosJSON" />
|
|
||||||
<xs:element xmlns:q4="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaConvocatoria" nillable="true" type="q4:ArrayOfConvocatoria" />
|
|
||||||
<xs:element xmlns:q5="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaTareasPendientes" nillable="true" type="q5:ArrayOfTareasPendientes" />
|
|
||||||
<xs:element xmlns:q6="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="PlantillaEmail" nillable="true" type="q6:PlantillaEmail" />
|
|
||||||
<xs:element xmlns:q7="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ProyectoNormativo" nillable="true" type="q7:ProyectoNormativo" />
|
|
||||||
<xs:element xmlns:q8="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ProyectosNormativos" nillable="true" type="q8:ArrayOfProyectoNormativo" />
|
|
||||||
<xs:element xmlns:q9="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="TareasPendientes" nillable="true" type="q9:TareasPendientes" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:extension>
|
|
||||||
</xs:complexContent>
|
|
||||||
</xs:complexType>
|
|
||||||
<xs:element name="ProyectoNormativoJSON" nillable="true" type="tns:ProyectoNormativoJSON" />
|
|
||||||
<xs:complexType name="BaseJson">
|
|
||||||
<xs:complexContent mixed="false">
|
|
||||||
<xs:extension xmlns:q10="http://schemas.datacontract.org/2004/07/Atesa.Utilitarios" base="q10:AtesaJSON">
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element minOccurs="0" name="CodigoRespuesta" nillable="true" type="xs:string" />
|
|
||||||
<xs:element minOccurs="0" name="DescripcionRespuesta" nillable="true" type="xs:string" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:extension>
|
|
||||||
</xs:complexContent>
|
|
||||||
</xs:complexType>
|
|
||||||
<xs:element name="BaseJson" nillable="true" type="tns:BaseJson" />
|
|
||||||
<xs:complexType name="ArrayOfEventosJSON">
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="EventosJSON" nillable="true" type="tns:EventosJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
<xs:element name="ArrayOfEventosJSON" nillable="true" type="tns:ArrayOfEventosJSON" />
|
|
||||||
<xs:complexType name="EventosJSON">
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element minOccurs="0" name="allDay" type="xs:boolean" />
|
|
||||||
<xs:element minOccurs="0" name="end" nillable="true" type="xs:string" />
|
|
||||||
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string" />
|
|
||||||
<xs:element minOccurs="0" name="start" nillable="true" type="xs:string" />
|
|
||||||
<xs:element minOccurs="0" name="title" nillable="true" type="xs:string" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
<xs:element name="EventosJSON" nillable="true" type="tns:EventosJSON" />
|
|
||||||
<xs:complexType name="FichaTecnicaJSON">
|
|
||||||
<xs:complexContent mixed="false">
|
|
||||||
<xs:extension base="tns:BaseJson">
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element minOccurs="0" name="EventosJSON" nillable="true" type="tns:ArrayOfEventosJSON" />
|
|
||||||
<xs:element xmlns:q11="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="FichaTecnica" nillable="true" type="q11:FichaTecnica" />
|
|
||||||
<xs:element xmlns:q12="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="FichasTecnicas" nillable="true" type="q12:ArrayOfFichaTecnica" />
|
|
||||||
<xs:element xmlns:q13="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaPalabraClave" nillable="true" type="q13:ArrayOfFichaTecnicaPalabraClave" />
|
|
||||||
<xs:element xmlns:q14="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaTareasPendientes" nillable="true" type="q14:ArrayOfTareasPendientes" />
|
|
||||||
<xs:element xmlns:q15="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="PalabraClave" nillable="true" type="q15:FichaTecnicaPalabraClave" />
|
|
||||||
<xs:element xmlns:q16="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="TareasPendientes" nillable="true" type="q16:TareasPendientes" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:extension>
|
|
||||||
</xs:complexContent>
|
|
||||||
</xs:complexType>
|
|
||||||
<xs:element name="FichaTecnicaJSON" nillable="true" type="tns:FichaTecnicaJSON" />
|
|
||||||
<xs:complexType name="AdjuntosJSON">
|
|
||||||
<xs:complexContent mixed="false">
|
|
||||||
<xs:extension base="tns:BaseJson">
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q17="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="Adjuntos" nillable="true" type="q17:DocumentosAdjuntos" />
|
|
||||||
<xs:element minOccurs="0" name="Carpeta" nillable="true" type="xs:string" />
|
|
||||||
<xs:element minOccurs="0" name="Id" nillable="true" type="xs:string" />
|
|
||||||
<xs:element minOccurs="0" name="IdDocumentoAdjunto" nillable="true" type="xs:int" />
|
|
||||||
<xs:element xmlns:q18="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaAdjuntos" nillable="true" type="q18:ArrayOfDocumentosAdjuntos" />
|
|
||||||
<xs:element minOccurs="0" name="Nombre" nillable="true" type="xs:string" />
|
|
||||||
<xs:element minOccurs="0" name="Tipo" nillable="true" type="xs:string" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:extension>
|
|
||||||
</xs:complexContent>
|
|
||||||
</xs:complexType>
|
|
||||||
<xs:element name="AdjuntosJSON" nillable="true" type="tns:AdjuntosJSON" />
|
|
||||||
<xs:complexType name="CatalogosPostJSON">
|
|
||||||
<xs:complexContent mixed="false">
|
|
||||||
<xs:extension base="tns:BaseJson">
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element minOccurs="0" name="IdTipo" nillable="true" type="xs:int" />
|
|
||||||
<xs:element minOccurs="0" name="codigo" nillable="true" type="xs:string" />
|
|
||||||
<xs:element minOccurs="0" name="dataModel" nillable="true" type="xs:anyType" />
|
|
||||||
<xs:element minOccurs="0" name="filtro" nillable="true" type="xs:string" />
|
|
||||||
<xs:element xmlns:q19="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="usuario" nillable="true" type="q19:Usuario" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:extension>
|
|
||||||
</xs:complexContent>
|
|
||||||
</xs:complexType>
|
|
||||||
<xs:element name="CatalogosPostJSON" nillable="true" type="tns:CatalogosPostJSON" />
|
|
||||||
<xs:complexType name="NotificacionesJSON">
|
|
||||||
<xs:complexContent mixed="false">
|
|
||||||
<xs:extension base="tns:BaseJson">
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element minOccurs="0" name="GotitasInformativas" type="xs:int" />
|
|
||||||
<xs:element minOccurs="0" name="TareasPendientes" type="xs:int" />
|
|
||||||
<xs:element minOccurs="0" name="codigo" nillable="true" type="xs:string" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:extension>
|
|
||||||
</xs:complexContent>
|
|
||||||
</xs:complexType>
|
|
||||||
<xs:element name="NotificacionesJSON" nillable="true" type="tns:NotificacionesJSON" />
|
|
||||||
<xs:complexType name="LoginJSON">
|
|
||||||
<xs:complexContent mixed="false">
|
|
||||||
<xs:extension base="tns:BaseJson">
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element minOccurs="0" name="Contrasena" nillable="true" type="xs:string" />
|
|
||||||
<xs:element minOccurs="0" name="LoginUsuario" nillable="true" type="xs:string" />
|
|
||||||
<xs:element minOccurs="0" name="NombreUsuario" nillable="true" type="xs:string" />
|
|
||||||
<xs:element minOccurs="0" name="Usuario" nillable="true" type="xs:string" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:extension>
|
|
||||||
</xs:complexContent>
|
|
||||||
</xs:complexType>
|
|
||||||
<xs:element name="LoginJSON" nillable="true" type="tns:LoginJSON" />
|
|
||||||
</xs:schema>
|
|
||||||
|
|
@ -1,244 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<xs:schema xmlns:tns="http://tempuri.org/" elementFormDefault="qualified" targetNamespace="http://tempuri.org/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
||||||
<xs:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" />
|
|
||||||
<xs:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd5" namespace="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" />
|
|
||||||
<xs:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd3" namespace="http://schemas.datacontract.org/2004/07/Atesa.Utilitarios" />
|
|
||||||
<xs:element name="GuardarProyectoNormativo">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q1:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarProyectoNormativoResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarProyectoNormativoResult" nillable="true" type="q2:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarConvocatoriaProyectoNormativo">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q3="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q3:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarConvocatoriaProyectoNormativoResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q4="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarConvocatoriaProyectoNormativoResult" nillable="true" type="q4:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerProyectoNormativo">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q5="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q5:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerProyectoNormativoResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q6="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerProyectoNormativoResult" nillable="true" type="q6:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="EnviarCorreo">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q7="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q7:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="EnviarCorreoResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q8="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="EnviarCorreoResult" nillable="true" type="q8:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarComentarioProyectoNormativo">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q9="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q9:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarComentarioProyectoNormativoResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q10="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarComentarioProyectoNormativoResult" nillable="true" type="q10:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarEventoProyectoNormativo">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q11="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q11:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarEventoProyectoNormativoResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q12="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarEventoProyectoNormativoResult" nillable="true" type="q12:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarFichaTecnica">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q13="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q13:FichaTecnicaJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarFichaTecnicaResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q14="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarFichaTecnicaResult" nillable="true" type="q14:FichaTecnicaJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarFichaTecnicaPalabraClave">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q15="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q15:FichaTecnicaJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarFichaTecnicaPalabraClaveResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q16="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarFichaTecnicaPalabraClaveResult" nillable="true" type="q16:FichaTecnicaJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="RemoverAdjunto">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q17="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q17:AdjuntosJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="RemoverAdjuntoResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q18="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="RemoverAdjuntoResult" nillable="true" type="q18:AdjuntosJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarAdjuntos">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q19="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q19:AdjuntosJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="GuardarAdjuntosResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q20="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarAdjuntosResult" nillable="true" type="q20:AdjuntosJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerAdjuntos">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q21="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q21:AdjuntosJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerAdjuntosResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q22="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ObtenerAdjuntosResult" nillable="true" type="q22:ArrayOfDocumentosAdjuntos" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerTareasPendientes">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q23="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q23:CatalogosPostJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerTareasPendientesResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q24="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ObtenerTareasPendientesResult" nillable="true" type="q24:ArrayOfTareasPendientes" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="InsertarActualizarTareasPendientes">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q25="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q25:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="InsertarActualizarTareasPendientesResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q26="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="InsertarActualizarTareasPendientesResult" nillable="true" type="q26:ProyectoNormativoJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerCantidadTareasPendientes">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q27="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q27:NotificacionesJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerCantidadTareasPendientesResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q28="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerCantidadTareasPendientesResult" nillable="true" type="q28:NotificacionesJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerUsuarioAD">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q29="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q29:LoginJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerUsuarioADResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q30="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerUsuarioADResult" nillable="true" type="q30:LoginJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="VerificarUsuarioBD">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q31="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q31:CatalogosPostJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="VerificarUsuarioBDResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q32="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="VerificarUsuarioBDResult" nillable="true" type="q32:CatalogosPostJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerPermisos">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q33="http://schemas.datacontract.org/2004/07/Atesa.Utilitarios" minOccurs="0" name="model" nillable="true" type="q33:AtesaJSON" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
<xs:element name="ObtenerPermisosResponse">
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:element xmlns:q34="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ObtenerPermisosResult" nillable="true" type="q34:ArrayOfPantallas" />
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
</xs:schema>
|
|
||||||
|
|
@ -0,0 +1,775 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:tns="http://tempuri.org/" elementFormDefault="qualified" targetNamespace="http://tempuri.org/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" />
|
||||||
|
<xs:import schemaLocation="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd5" namespace="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" />
|
||||||
|
<xs:element name="GuardarProyectoNormativo">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q1:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarProyectoNormativoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarProyectoNormativoResult" nillable="true" type="q2:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="BuscarNombreProyecto">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q3="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q3:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="BuscarNombreProyectoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" name="BuscarNombreProyectoResult" nillable="true" type="xs:string" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarConvocatoriaProyectoNormativo">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q4="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q4:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarConvocatoriaProyectoNormativoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q5="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarConvocatoriaProyectoNormativoResult" nillable="true" type="q5:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ActualizarConvocados">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q6="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q6:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ActualizarConvocadosResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q7="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ActualizarConvocadosResult" nillable="true" type="q7:ArrayOfConvocatoria" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerProyectoNormativo">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q8="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q8:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerProyectoNormativoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q9="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerProyectoNormativoResult" nillable="true" type="q9:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EnviarCorreo">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q10="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q10:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EnviarCorreoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q11="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="EnviarCorreoResult" nillable="true" type="q11:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarComentarioProyectoNormativo">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q12="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q12:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarComentarioProyectoNormativoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q13="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarComentarioProyectoNormativoResult" nillable="true" type="q13:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarEventoProyectoNormativo">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q14="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q14:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarEventoProyectoNormativoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q15="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarEventoProyectoNormativoResult" nillable="true" type="q15:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EliminarConvocatoriaProyectoNormativo">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q16="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q16:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EliminarConvocatoriaProyectoNormativoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q17="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="EliminarConvocatoriaProyectoNormativoResult" nillable="true" type="q17:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarFichaTecnica">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q18="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q18:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarFichaTecnicaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q19="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarFichaTecnicaResult" nillable="true" type="q19:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarFichaTecnicaHistorico">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q20="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q20:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarFichaTecnicaHistoricoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q21="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarFichaTecnicaHistoricoResult" nillable="true" type="q21:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarFichaTecnicaHistoricoPalabraClave">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q22="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q22:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarFichaTecnicaHistoricoPalabraClaveResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q23="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarFichaTecnicaHistoricoPalabraClaveResult" nillable="true" type="q23:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarFichaTecnicaPalabraClave">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q24="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q24:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarFichaTecnicaPalabraClaveResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q25="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarFichaTecnicaPalabraClaveResult" nillable="true" type="q25:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerFichaTecnica">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q26="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q26:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerFichaTecnicaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q27="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerFichaTecnicaResult" nillable="true" type="q27:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerSitios">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q28="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q28:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerSitiosResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q29="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerSitiosResult" nillable="true" type="q29:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerEliminadas">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q30="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q30:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerEliminadasResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q31="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerEliminadasResult" nillable="true" type="q31:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerInactivas">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q32="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q32:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerInactivasResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q33="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerInactivasResult" nillable="true" type="q33:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EnviarCorreoFichaTecnica">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q34="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q34:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EnviarCorreoFichaTecnicaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q35="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="EnviarCorreoFichaTecnicaResult" nillable="true" type="q35:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EliminarFichaTecnica">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q36="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q36:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EliminarFichaTecnicaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q37="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="EliminarFichaTecnicaResult" nillable="true" type="q37:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerFichaTecnicaHistorico">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q38="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q38:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerFichaTecnicaHistoricoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q39="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerFichaTecnicaHistoricoResult" nillable="true" type="q39:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InsertarActualizarFichaTecnicaAlerta">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q40="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q40:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InsertarActualizarFichaTecnicaAlertaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q41="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="InsertarActualizarFichaTecnicaAlertaResult" nillable="true" type="q41:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerFichaTecnicaAlerta">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q42="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q42:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerFichaTecnicaAlertaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q43="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerFichaTecnicaAlertaResult" nillable="true" type="q43:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerFichaAlerta">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q44="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q44:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerFichaAlertaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q45="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerFichaAlertaResult" nillable="true" type="q45:FichaTecnicaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="RemoverAdjunto">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q46="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q46:AdjuntosJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="RemoverAdjuntoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q47="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="RemoverAdjuntoResult" nillable="true" type="q47:AdjuntosJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="CopiarAdjunto">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q48="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q48:AdjuntosJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="CopiarAdjuntoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q49="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="CopiarAdjuntoResult" nillable="true" type="q49:AdjuntosJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EliminarbaseAdjunto">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q50="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q50:AdjuntosJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EliminarbaseAdjuntoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q51="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="EliminarbaseAdjuntoResult" nillable="true" type="q51:AdjuntosJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarAdjuntos">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q52="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q52:AdjuntosJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarAdjuntosResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q53="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarAdjuntosResult" nillable="true" type="q53:AdjuntosJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerAdjuntos">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q54="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q54:AdjuntosJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerAdjuntosResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q55="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ObtenerAdjuntosResult" nillable="true" type="q55:ArrayOfDocumentosAdjuntos" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerTareasPendientes">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q56="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q56:CatalogosPostJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerTareasPendientesResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q57="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ObtenerTareasPendientesResult" nillable="true" type="q57:ArrayOfTareasPendientes" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerSolicitudTareasPendientes">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q58="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q58:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerSolicitudTareasPendientesResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q59="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerSolicitudTareasPendientesResult" nillable="true" type="q59:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InsertarActualizarTareasPendientes">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q60="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q60:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InsertarActualizarTareasPendientesResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q61="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="InsertarActualizarTareasPendientesResult" nillable="true" type="q61:ProyectoNormativoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InsertarActualizarTareasPendientes2">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q62="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q62:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InsertarActualizarTareasPendientes2Response">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q63="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="InsertarActualizarTareasPendientes2Result" nillable="true" type="q63:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerCantidadTareasPendientes">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q64="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q64:NotificacionesJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerCantidadTareasPendientesResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q65="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerCantidadTareasPendientesResult" nillable="true" type="q65:NotificacionesJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerGotitasPendientes">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q66="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q66:CatalogosPostJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerGotitasPendientesResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q67="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ObtenerGotitasPendientesResult" nillable="true" type="q67:ArrayOfGotitasNormativas" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InsertarGotitasNormativas">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q68="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="model" nillable="true" type="q68:GotitasNormativas" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InsertarGotitasNormativasResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q69="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="InsertarGotitasNormativasResult" nillable="true" type="q69:BaseJson" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerCantidadGotitasPendientes">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q70="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q70:NotificacionesJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerCantidadGotitasPendientesResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q71="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerCantidadGotitasPendientesResult" nillable="true" type="q71:NotificacionesJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerUsuarioAD">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q72="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q72:LoginJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerUsuarioADResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q73="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerUsuarioADResult" nillable="true" type="q73:LoginJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="VerificarUsuarioBD">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q74="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q74:CatalogosPostJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="VerificarUsuarioBDResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q75="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="VerificarUsuarioBDResult" nillable="true" type="q75:CatalogosPostJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="VerificarUsuarioBDExterno">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q76="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q76:CatalogosPostJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="VerificarUsuarioBDExternoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q77="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="VerificarUsuarioBDExternoResult" nillable="true" type="q77:CatalogosPostJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerPermisos">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q78="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q78:CatalogosPostJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerPermisosResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q79="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ObtenerPermisosResult" nillable="true" type="q79:ArrayOfPantallas" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarSolicitud">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q80="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q80:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarSolicitudResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q81="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarSolicitudResult" nillable="true" type="q81:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerSolicitud">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q82="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q82:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerSolicitudResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q83="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerSolicitudResult" nillable="true" type="q83:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerSolicitudUsuario">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q84="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q84:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerSolicitudUsuarioResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q85="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerSolicitudUsuarioResult" nillable="true" type="q85:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerSolicitudCompraAutorizadas">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q86="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q86:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerSolicitudCompraAutorizadasResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q87="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerSolicitudCompraAutorizadasResult" nillable="true" type="q87:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerPorTipo">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q88="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q88:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerPorTipoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q89="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerPorTipoResult" nillable="true" type="q89:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EnviarCorreoSolicitud">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q90="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q90:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EnviarCorreoSolicitudResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q91="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="EnviarCorreoSolicitudResult" nillable="true" type="q91:SolicitudJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarPregunta">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q92="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q92:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarPreguntaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q93="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarPreguntaResult" nillable="true" type="q93:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerEncuestas">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q94="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q94:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerEncuestasResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q95="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerEncuestasResult" nillable="true" type="q95:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerEncabezadoEncuesta">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q96="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q96:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerEncabezadoEncuestaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q97="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerEncabezadoEncuestaResult" nillable="true" type="q97:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerDetalleEncuesta">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q98="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q98:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerDetalleEncuestaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q99="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerDetalleEncuestaResult" nillable="true" type="q99:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarEncuesta">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q100="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q100:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarEncuestaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q101="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarEncuestaResult" nillable="true" type="q101:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarRespuestaEncuesta">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q102="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q102:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarRespuestaEncuestaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q103="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarRespuestaEncuestaResult" nillable="true" type="q103:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarUsuariosEncuesta">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q104="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q104:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="GuardarUsuariosEncuestaResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q105="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="GuardarUsuariosEncuestaResult" nillable="true" type="q105:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerUsuariosEncuestas">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q106="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q106:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ObtenerUsuariosEncuestasResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q107="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="ObtenerUsuariosEncuestasResult" nillable="true" type="q107:EncuestaJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EnviarCorreoAExterno">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q108="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="model" nillable="true" type="q108:UExternoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EnviarCorreoAExternoResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q109="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" minOccurs="0" name="EnviarCorreoAExternoResult" nillable="true" type="q109:UExternoJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
</xs:schema>
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/Atesa.Utilitarios" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/Atesa.Utilitarios" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/Atesa.Utilitarios" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/Atesa.Utilitarios" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
<xs:import schemaLocation="http://10.50.1.123:2070/Sinort.svc?xsd=xsd4" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
|
<xs:import schemaLocation="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd4" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
|
||||||
<xs:complexType name="AtesaJSON">
|
<xs:complexType name="AtesaJSON">
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="PermisosUsuario" nillable="true" type="q1:ArrayOfstring" />
|
<xs:element xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="PermisosUsuario" nillable="true" type="q1:ArrayOfstring" />
|
||||||
|
|
@ -0,0 +1,226 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Entidades" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd5" namespace="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" />
|
||||||
|
<xs:import schemaLocation="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd3" namespace="http://schemas.datacontract.org/2004/07/Atesa.Utilitarios" />
|
||||||
|
<xs:import schemaLocation="http://aya-vsrv-wstt:2005/Sinort.svc?xsd=xsd4" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
|
||||||
|
<xs:complexType name="ProyectoNormativoJSON">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:extension base="tns:BaseJson">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="Comentario" nillable="true" type="q1:ComentariosProyecto" />
|
||||||
|
<xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="Convocado" nillable="true" type="q2:Convocatoria" />
|
||||||
|
<xs:element xmlns:q3="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="Evento" nillable="true" type="q3:Calendario" />
|
||||||
|
<xs:element minOccurs="0" name="EventosJSON" nillable="true" type="tns:ArrayOfEventosJSON" />
|
||||||
|
<xs:element xmlns:q4="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaConvocatoria" nillable="true" type="q4:ArrayOfConvocatoria" />
|
||||||
|
<xs:element xmlns:q5="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaTareasPendientes" nillable="true" type="q5:ArrayOfTareasPendientes" />
|
||||||
|
<xs:element xmlns:q6="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="PlantillaEmail" nillable="true" type="q6:PlantillaEmail" />
|
||||||
|
<xs:element xmlns:q7="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ProyectoNormativo" nillable="true" type="q7:ProyectoNormativo" />
|
||||||
|
<xs:element xmlns:q8="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ProyectosNormativos" nillable="true" type="q8:ArrayOfProyectoNormativo" />
|
||||||
|
<xs:element xmlns:q9="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="TareasPendientes" nillable="true" type="q9:TareasPendientes" />
|
||||||
|
<xs:element minOccurs="0" name="nombreProyecto" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="tipoProyecto" type="xs:int" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ProyectoNormativoJSON" nillable="true" type="tns:ProyectoNormativoJSON" />
|
||||||
|
<xs:complexType name="BaseJson">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:extension xmlns:q10="http://schemas.datacontract.org/2004/07/Atesa.Utilitarios" base="q10:AtesaJSON">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" name="CodigoRespuesta" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="DescripcionRespuesta" nillable="true" type="xs:string" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BaseJson" nillable="true" type="tns:BaseJson" />
|
||||||
|
<xs:complexType name="ArrayOfEventosJSON">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" maxOccurs="unbounded" name="EventosJSON" nillable="true" type="tns:EventosJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ArrayOfEventosJSON" nillable="true" type="tns:ArrayOfEventosJSON" />
|
||||||
|
<xs:complexType name="EventosJSON">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" name="allDay" type="xs:boolean" />
|
||||||
|
<xs:element minOccurs="0" name="end" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="start" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="title" nillable="true" type="xs:string" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="EventosJSON" nillable="true" type="tns:EventosJSON" />
|
||||||
|
<xs:complexType name="FichaTecnicaJSON">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:extension base="tns:BaseJson">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" name="EventosJSON" nillable="true" type="tns:ArrayOfEventosJSON" />
|
||||||
|
<xs:element xmlns:q11="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="FichaTecnica" nillable="true" type="q11:FichaTecnica" />
|
||||||
|
<xs:element xmlns:q12="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="FichaTecnicaAlerta" nillable="true" type="q12:FichaTecnicaAlerta" />
|
||||||
|
<xs:element xmlns:q13="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="FichaTecnicaHistorico" nillable="true" type="q13:FichaTecnicaHistorico" />
|
||||||
|
<xs:element xmlns:q14="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="FichaTecnicaHistoricos" nillable="true" type="q14:ArrayOfFichaTecnicaHistorico" />
|
||||||
|
<xs:element xmlns:q15="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="FichasTecnicas" nillable="true" type="q15:ArrayOfFichaTecnica" />
|
||||||
|
<xs:element xmlns:q16="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="HistoricoPalabraClave" nillable="true" type="q16:FichaTecnicaHistoricoPalabraClave" />
|
||||||
|
<xs:element minOccurs="0" name="IdFichaTecnica" nillable="true" type="xs:int" />
|
||||||
|
<xs:element minOccurs="0" name="IdPalabra" nillable="true" type="xs:int" />
|
||||||
|
<xs:element xmlns:q17="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaFichaTecnicaAlerta" nillable="true" type="q17:ArrayOfFichaTecnicaAlerta" />
|
||||||
|
<xs:element xmlns:q18="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaFichasTecnicasAlertas" nillable="true" type="q18:ArrayOfFichaTecnicaAlerta" />
|
||||||
|
<xs:element xmlns:q19="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaPalabraClave" nillable="true" type="q19:ArrayOfFichaTecnicaPalabraClave" />
|
||||||
|
<xs:element xmlns:q20="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaPalabraClaveHistorico" nillable="true" type="q20:ArrayOfFichaTecnicaHistoricoPalabraClave" />
|
||||||
|
<xs:element xmlns:q21="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaParticipantes" nillable="true" type="q21:ArrayOfUsuario" />
|
||||||
|
<xs:element xmlns:q22="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaTareasPendientes" nillable="true" type="q22:ArrayOfTareasPendientes" />
|
||||||
|
<xs:element minOccurs="0" name="Mensaje" nillable="true" type="xs:string" />
|
||||||
|
<xs:element xmlns:q23="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="PalabraClave" nillable="true" type="q23:FichaTecnicaPalabraClave" />
|
||||||
|
<xs:element xmlns:q24="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="PlantillaEmail" nillable="true" type="q24:PlantillaEmail" />
|
||||||
|
<xs:element xmlns:q25="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="TareasPendientes" nillable="true" type="q25:TareasPendientes" />
|
||||||
|
<xs:element minOccurs="0" name="UsuarioSistema" nillable="true" type="xs:string" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="FichaTecnicaJSON" nillable="true" type="tns:FichaTecnicaJSON" />
|
||||||
|
<xs:complexType name="AdjuntosJSON">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:extension base="tns:BaseJson">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q26="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="Adjuntos" nillable="true" type="q26:DocumentosAdjuntos" />
|
||||||
|
<xs:element minOccurs="0" name="Carpeta" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="Id" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="IdDocumentoAdjunto" nillable="true" type="xs:int" />
|
||||||
|
<xs:element xmlns:q27="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaAdjuntos" nillable="true" type="q27:ArrayOfDocumentosAdjuntos" />
|
||||||
|
<xs:element minOccurs="0" name="Nombre" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="Tipo" nillable="true" type="xs:string" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="AdjuntosJSON" nillable="true" type="tns:AdjuntosJSON" />
|
||||||
|
<xs:complexType name="CatalogosPostJSON">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:extension base="tns:BaseJson">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" name="IdPantalla" nillable="true" type="xs:int" />
|
||||||
|
<xs:element minOccurs="0" name="IdTipo" nillable="true" type="xs:int" />
|
||||||
|
<xs:element xmlns:q28="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="ListaCodigos" nillable="true" type="q28:ArrayOfint" />
|
||||||
|
<xs:element xmlns:q29="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="ListaDesc" nillable="true" type="q29:ArrayOfstring" />
|
||||||
|
<xs:element xmlns:q30="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="TareasPendiente" nillable="true" type="q30:TareasPendiente" />
|
||||||
|
<xs:element xmlns:q31="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="UsuarioExterno" nillable="true" type="q31:UsuarioExterno" />
|
||||||
|
<xs:element minOccurs="0" name="codigo" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="filtro" nillable="true" type="xs:string" />
|
||||||
|
<xs:element xmlns:q32="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="pantallas" nillable="true" type="q32:ArrayOfPantallas" />
|
||||||
|
<xs:element xmlns:q33="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="usuario" nillable="true" type="q33:Usuario" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="CatalogosPostJSON" nillable="true" type="tns:CatalogosPostJSON" />
|
||||||
|
<xs:complexType name="SolicitudJSON">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:extension base="tns:BaseJson">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" name="EventosJSON" nillable="true" type="tns:ArrayOfEventosJSON" />
|
||||||
|
<xs:element minOccurs="0" name="IdEstadoSolicitud" nillable="true" type="xs:int" />
|
||||||
|
<xs:element minOccurs="0" name="IdSolicitud" nillable="true" type="xs:int" />
|
||||||
|
<xs:element minOccurs="0" name="IdTipoSolicitud" nillable="true" type="xs:int" />
|
||||||
|
<xs:element minOccurs="0" name="Link" nillable="true" type="xs:string" />
|
||||||
|
<xs:element xmlns:q34="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaTareasPendientes" nillable="true" type="q34:ArrayOfTareasPendientes" />
|
||||||
|
<xs:element xmlns:q35="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaUsuariosCorreo" nillable="true" type="q35:ArrayOfUsuario" />
|
||||||
|
<xs:element minOccurs="0" name="Mensaje" nillable="true" type="xs:string" />
|
||||||
|
<xs:element xmlns:q36="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="PlantillaEmail" nillable="true" type="q36:PlantillaEmail" />
|
||||||
|
<xs:element minOccurs="0" name="Ruta" nillable="true" type="xs:string" />
|
||||||
|
<xs:element xmlns:q37="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="Solicitud" nillable="true" type="q37:Solicitud" />
|
||||||
|
<xs:element xmlns:q38="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="Solicitudes" nillable="true" type="q38:ArrayOfSolicitud" />
|
||||||
|
<xs:element xmlns:q39="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="TareasPendientes" nillable="true" type="q39:TareasPendientes" />
|
||||||
|
<xs:element minOccurs="0" name="UsuarioSistema" nillable="true" type="xs:string" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="SolicitudJSON" nillable="true" type="tns:SolicitudJSON" />
|
||||||
|
<xs:complexType name="NotificacionesJSON">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:extension base="tns:BaseJson">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" name="GotitasNormativas" type="xs:int" />
|
||||||
|
<xs:element minOccurs="0" name="TareasPendientes" type="xs:int" />
|
||||||
|
<xs:element minOccurs="0" name="codigo" nillable="true" type="xs:string" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="NotificacionesJSON" nillable="true" type="tns:NotificacionesJSON" />
|
||||||
|
<xs:complexType name="LoginJSON">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:extension base="tns:BaseJson">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" name="Contrasena" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="LoginUsuario" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="NombreUsuario" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="Usuario" nillable="true" type="xs:string" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="LoginJSON" nillable="true" type="tns:LoginJSON" />
|
||||||
|
<xs:complexType name="EncuestaJSON">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:extension base="tns:BaseJson">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" name="BodyEncuestaJson" nillable="true" type="xs:string" />
|
||||||
|
<xs:element xmlns:q40="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="DetalleEncuesta" nillable="true" type="q40:DetalleEncuesta" />
|
||||||
|
<xs:element xmlns:q41="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="DetalleEncuestas" nillable="true" type="q41:ArrayOfDetalleEncuesta" />
|
||||||
|
<xs:element xmlns:q42="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="EncabezadoEncuesta" nillable="true" type="q42:EncabezadoEncuesta" />
|
||||||
|
<xs:element xmlns:q43="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="EncabezadoEncuestas" nillable="true" type="q43:ArrayOfEncabezadoEncuesta" />
|
||||||
|
<xs:element minOccurs="0" name="Estado" type="xs:boolean" />
|
||||||
|
<xs:element minOccurs="0" name="IdEncabezadoEncuesta" type="xs:int" />
|
||||||
|
<xs:element xmlns:q44="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaRespuestas" nillable="true" type="q44:ArrayOfRespuestaEncuesta" />
|
||||||
|
<xs:element xmlns:q45="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaTareasPendientes" nillable="true" type="q45:ArrayOfTareasPendientes" />
|
||||||
|
<xs:element xmlns:q46="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="ListaUsuariosCorreo" nillable="true" type="q46:ArrayOfUsuario" />
|
||||||
|
<xs:element minOccurs="0" name="Mensaje" nillable="true" type="xs:string" />
|
||||||
|
<xs:element xmlns:q47="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="PlantillaEmail" nillable="true" type="q47:PlantillaEmail" />
|
||||||
|
<xs:element xmlns:q48="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="RespuestaEncuesta" nillable="true" type="q48:RespuestaEncuesta" />
|
||||||
|
<xs:element xmlns:q49="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="TareasPendientes" nillable="true" type="q49:TareasPendientes" />
|
||||||
|
<xs:element xmlns:q50="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="TipoPregunta" nillable="true" type="q50:TipoPregunta" />
|
||||||
|
<xs:element xmlns:q51="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="TipoPreguntas" nillable="true" type="q51:ArrayOfTipoPregunta" />
|
||||||
|
<xs:element minOccurs="0" name="UsuarioSistema" nillable="true" type="xs:string" />
|
||||||
|
<xs:element xmlns:q52="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="UsuariosEncuesta" nillable="true" type="q52:UsuariosEncuesta" />
|
||||||
|
<xs:element xmlns:q53="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="UsuariosEncuestas" nillable="true" type="q53:ArrayOfUsuariosEncuesta" />
|
||||||
|
<xs:element minOccurs="0" name="questions" nillable="true" type="tns:ArrayOfPreguntasJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="EncuestaJSON" nillable="true" type="tns:EncuestaJSON" />
|
||||||
|
<xs:complexType name="ArrayOfPreguntasJSON">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" maxOccurs="unbounded" name="PreguntasJSON" nillable="true" type="tns:PreguntasJSON" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ArrayOfPreguntasJSON" nillable="true" type="tns:ArrayOfPreguntasJSON" />
|
||||||
|
<xs:complexType name="PreguntasJSON">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q54="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="choices" nillable="true" type="q54:ArrayOfstring" />
|
||||||
|
<xs:element xmlns:q55="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="columns" nillable="true" type="q55:ArrayOfstring" />
|
||||||
|
<xs:element minOccurs="0" name="isRequired" type="xs:boolean" />
|
||||||
|
<xs:element minOccurs="0" name="maximumRateDescription" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="mininumRateDescription" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="name" nillable="true" type="xs:string" />
|
||||||
|
<xs:element xmlns:q56="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="rows" nillable="true" type="q56:ArrayOfstring" />
|
||||||
|
<xs:element minOccurs="0" name="title" nillable="true" type="xs:string" />
|
||||||
|
<xs:element minOccurs="0" name="type" nillable="true" type="xs:string" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PreguntasJSON" nillable="true" type="tns:PreguntasJSON" />
|
||||||
|
<xs:complexType name="UExternoJSON">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:extension base="tns:BaseJson">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element xmlns:q57="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="PlantillaEmail" nillable="true" type="q57:PlantillaEmail" />
|
||||||
|
<xs:element xmlns:q58="http://schemas.datacontract.org/2004/07/AYA.SlnSinortModel.Sinort" minOccurs="0" name="UsuarioExterno" nillable="true" type="q58:UsuarioExterno" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="UExternoJSON" nillable="true" type="tns:UExternoJSON" />
|
||||||
|
</xs:schema>
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,4 +6,10 @@
|
||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
<xs:element name="ArrayOfstring" nillable="true" type="tns:ArrayOfstring" />
|
<xs:element name="ArrayOfstring" nillable="true" type="tns:ArrayOfstring" />
|
||||||
|
<xs:complexType name="ArrayOfint">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" maxOccurs="unbounded" name="int" type="xs:int" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ArrayOfint" nillable="true" type="tns:ArrayOfint" />
|
||||||
</xs:schema>
|
</xs:schema>
|
||||||
|
|
@ -5,6 +5,6 @@
|
||||||
<binding digest="System.ServiceModel.Configuration.WSHttpBindingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:<?xml version="1.0" encoding="utf-16"?><Data name="WSHttpBinding_ISinort"><security mode="None" /></Data>" bindingType="wsHttpBinding" name="WSHttpBinding_ISinort" />
|
<binding digest="System.ServiceModel.Configuration.WSHttpBindingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:<?xml version="1.0" encoding="utf-16"?><Data name="WSHttpBinding_ISinort"><security mode="None" /></Data>" bindingType="wsHttpBinding" name="WSHttpBinding_ISinort" />
|
||||||
</bindings>
|
</bindings>
|
||||||
<endpoints>
|
<endpoints>
|
||||||
<endpoint normalizedDigest="<?xml version="1.0" encoding="utf-16"?><Data address="http://10.50.1.123:2070/Sinort.svc/soap" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ISinort" contract="ServicioSinortWCF.ISinort" name="WSHttpBinding_ISinort" />" digest="<?xml version="1.0" encoding="utf-16"?><Data address="http://10.50.1.123:2070/Sinort.svc/soap" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ISinort" contract="ServicioSinortWCF.ISinort" name="WSHttpBinding_ISinort" />" contractName="ServicioSinortWCF.ISinort" name="WSHttpBinding_ISinort" />
|
<endpoint normalizedDigest="<?xml version="1.0" encoding="utf-16"?><Data address="http://aya-vsrv-wstt:2005/Sinort.svc/soap" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ISinort" contract="ServicioSinortWCF.ISinort" name="WSHttpBinding_ISinort" />" digest="<?xml version="1.0" encoding="utf-16"?><Data address="http://aya-vsrv-wstt:2005/Sinort.svc/soap" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ISinort" contract="ServicioSinortWCF.ISinort" name="WSHttpBinding_ISinort" />" contractName="ServicioSinortWCF.ISinort" name="WSHttpBinding_ISinort" />
|
||||||
</endpoints>
|
</endpoints>
|
||||||
</configurationSnapshot>
|
</configurationSnapshot>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<SavedWcfConfigurationInformation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="9.1" CheckSum="uNFvAB4kI0v8Fnpl4pvrG7l5qtM=">
|
<SavedWcfConfigurationInformation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="9.1" CheckSum="PGguYY4Nm0OatALtU0LIJrdpVAg=">
|
||||||
<bindingConfigurations>
|
<bindingConfigurations>
|
||||||
<bindingConfiguration bindingType="wsHttpBinding" name="WSHttpBinding_ISinort">
|
<bindingConfiguration bindingType="wsHttpBinding" name="WSHttpBinding_ISinort">
|
||||||
<properties>
|
<properties>
|
||||||
|
|
@ -127,10 +127,10 @@
|
||||||
</bindingConfiguration>
|
</bindingConfiguration>
|
||||||
</bindingConfigurations>
|
</bindingConfigurations>
|
||||||
<endpoints>
|
<endpoints>
|
||||||
<endpoint name="WSHttpBinding_ISinort" contract="ServicioSinortWCF.ISinort" bindingType="wsHttpBinding" address="http://10.50.1.123:2070/Sinort.svc/soap" bindingConfiguration="WSHttpBinding_ISinort">
|
<endpoint name="WSHttpBinding_ISinort" contract="ServicioSinortWCF.ISinort" bindingType="wsHttpBinding" address="http://aya-vsrv-wstt:2005/Sinort.svc/soap" bindingConfiguration="WSHttpBinding_ISinort">
|
||||||
<properties>
|
<properties>
|
||||||
<property path="/address" isComplexType="false" isExplicitlyDefined="true" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<property path="/address" isComplexType="false" isExplicitlyDefined="true" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<serializedValue>http://10.50.1.123:2070/Sinort.svc/soap</serializedValue>
|
<serializedValue>http://aya-vsrv-wstt:2005/Sinort.svc/soap</serializedValue>
|
||||||
</property>
|
</property>
|
||||||
<property path="/behaviorConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<property path="/behaviorConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<serializedValue />
|
<serializedValue />
|
||||||
|
|
|
||||||
|
|
@ -5,16 +5,16 @@ var RepositorioVirtual = $("#hiddenRepositorioVirtual").val();
|
||||||
var RepositorioLocal = $("#hiddenRepositorioLocal").val();
|
var RepositorioLocal = $("#hiddenRepositorioLocal").val();
|
||||||
var UsuarioSistema = $("#hiddenUsuarioSistema").val();
|
var UsuarioSistema = $("#hiddenUsuarioSistema").val();
|
||||||
var NombreUsuario = $("#hiddenNombreUsuario").val();
|
var NombreUsuario = $("#hiddenNombreUsuario").val();
|
||||||
var LinkPropuesta = "http://aya-vsrv-apptt:2525/PropuestaNormativa/DetallePropuesta?";
|
var LinkPropuesta = "http://10.50.1.97:6075/PropuestaNormativa/DetallePropuesta?";
|
||||||
var LinkSolicitudTarea = "http://localhost/AYA.SlnSinort/TareasPendientes";
|
var LinkSolicitudTarea = "http://10.50.1.97:6075/Home/TareasPendientes";
|
||||||
var LinkSolicitudResponder = "http://localhost/AYA.SlnSinort/NormativaReglamentacionTecnica/VerSolicitudes?";
|
var LinkSolicitudResponder = "http://10.50.1.97:6075/NormativaReglamentacionTecnica/VerSolicitudes?";
|
||||||
//aya-vsrv-apptt:2525
|
//aya-vsrv-apptt:2525
|
||||||
//10.50.1.97:6075
|
//http://aya-vsrv-apptt:2525/Home/TareasPendientes
|
||||||
//http://aya-vsrv-wstt:2005/Sinort.svc
|
//http://aya-vsrv-wstt:2005/Sinort.svc
|
||||||
//http://aya-vsrv-wstt:2005/SinortCatalogos.svc
|
//http://aya-vsrv-wstt:2005/SinortCatalogos.svc
|
||||||
var server = window.location.protocol + "//" + "localhost" + "/" + (window.location.pathname.split('/')[1]) + "/";
|
var server = window.location.protocol + "//" + "10.50.1.97:6075" + "/" + (window.location.pathname.split('/')[1]) + "/";
|
||||||
var SinorLoginWCF = "http://localhost/AYA.SlnSinort.WCF/Sinort.svc";
|
var SinorLoginWCF = "http://10.50.1.123:2070/Sinort.svc";
|
||||||
var SinorSignupWCF = "http://localhost/AYA.SlnSinort.WCF/SinortCatalogos.svc";
|
var SinorSignupWCF = "http://10.50.1.123:2070/SinortCatalogos.svc";
|
||||||
var string_empty = "";
|
var string_empty = "";
|
||||||
var Atesa = {};
|
var Atesa = {};
|
||||||
var StarterTemplateVisible = true;
|
var StarterTemplateVisible = true;
|
||||||
|
|
@ -77,6 +77,7 @@ var Solicitud = {
|
||||||
|
|
||||||
var Roles = {
|
var Roles = {
|
||||||
FuncionalExperto: { Codigo: 1, Descripcion: "Usuario funcional experto" },
|
FuncionalExperto: { Codigo: 1, Descripcion: "Usuario funcional experto" },
|
||||||
|
LiderSuplente: { Codigo: 2, Descripcion: "Líder suplente" },
|
||||||
}
|
}
|
||||||
|
|
||||||
var Pantallas = {
|
var Pantallas = {
|
||||||
|
|
@ -742,7 +743,7 @@ this.LoadMessage = function (Message) {
|
||||||
stringHtml += "<div id=\"loadingGif\" class=\"toast toast-default\" style=\"font-size:14px;\">";
|
stringHtml += "<div id=\"loadingGif\" class=\"toast toast-default\" style=\"font-size:14px;\">";
|
||||||
stringHtml += "<table>";
|
stringHtml += "<table>";
|
||||||
stringHtml += "<tr>";
|
stringHtml += "<tr>";
|
||||||
stringHtml += "<td><img src=\"http://AYA-VSRV-APPTT:2525/dist/img/ajax-loader.gif\" alt=\"loading\" height=\"50\" width=\"50\"></td>";
|
stringHtml += "<td><img src=\"http://10.50.1.97:6075/dist/img/ajax-loader.gif\" alt=\"loading\" height=\"50\" width=\"50\"></td>";
|
||||||
stringHtml += "<td> </td>";
|
stringHtml += "<td> </td>";
|
||||||
stringHtml += "<td>";
|
stringHtml += "<td>";
|
||||||
stringHtml += "<div class=\"toast-title\">" + Message + "</div>";
|
stringHtml += "<div class=\"toast-title\">" + Message + "</div>";
|
||||||
|
|
@ -1809,10 +1810,10 @@ this.CerrarSesion = function () {
|
||||||
contentType: "application/json; charset=utf-8",
|
contentType: "application/json; charset=utf-8",
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: function () {
|
success: function () {
|
||||||
document.location.href = "http://aya-vsrv-apptt:2525/";
|
document.location.href = "http://10.50.1.97:6075/";
|
||||||
},
|
},
|
||||||
error: function () {
|
error: function () {
|
||||||
document.location.href = "http://aya-vsrv-apptt:2525/";
|
document.location.href = "http://10.50.1.97:6075/";
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ var Nombre;
|
||||||
var IdGotita;
|
var IdGotita;
|
||||||
var NombreDocumento;
|
var NombreDocumento;
|
||||||
var DescTipoproyecto;
|
var DescTipoproyecto;
|
||||||
|
var FechaDocumentos;
|
||||||
var modelDocumentoAdjunto;
|
var modelDocumentoAdjunto;
|
||||||
|
|
||||||
jQuery(document).ready(function () {
|
jQuery(document).ready(function () {
|
||||||
|
|
@ -136,7 +137,6 @@ jQuery(document).ready(function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -171,8 +171,8 @@ this.GuardarGotitaNormativa = function () {
|
||||||
Nombre: $("#txtNombre").val(),
|
Nombre: $("#txtNombre").val(),
|
||||||
Descripcion: $("#txtDescripcion").val(),
|
Descripcion: $("#txtDescripcion").val(),
|
||||||
FechaCaducidad: $("#txtFechaCaducidad").DateFormatWCF(),
|
FechaCaducidad: $("#txtFechaCaducidad").DateFormatWCF(),
|
||||||
IdDocumentoAdjunto: IsNullOrEmpty(modelDocumentoAdjunto) ? 0 : modelDocumentoAdjunto.Adjuntos.IdDocumentoAdjunto,
|
IdDocumentoAdjunto: IsNullOrEmpty(modelDocumentoAdjunto) ? null : modelDocumentoAdjunto.Adjuntos.IdDocumentoAdjunto,
|
||||||
DescripcionDocumentoAdjunto: IsNullOrEmpty(modelDocumentoAdjunto) ? 0 : modelDocumentoAdjunto.Adjuntos.Nombre,
|
DescripcionDocumentoAdjunto: IsNullOrEmpty(modelDocumentoAdjunto) ? null : modelDocumentoAdjunto.Adjuntos.Nombre,
|
||||||
Estado: 1,
|
Estado: 1,
|
||||||
UsuarioCreacion: UsuarioSistema
|
UsuarioCreacion: UsuarioSistema
|
||||||
|
|
||||||
|
|
@ -202,6 +202,8 @@ this.LimpiarControles = function () {
|
||||||
//Adjuntos
|
//Adjuntos
|
||||||
this.AbrirAdjuntos = function () {
|
this.AbrirAdjuntos = function () {
|
||||||
DescTipoproyecto = 'Gotita Normativa';
|
DescTipoproyecto = 'Gotita Normativa';
|
||||||
|
var dt = new Date();
|
||||||
|
FechaDocumentos = dt.getDate() + "_" + (dt.getMonth() + 1) + "_" + dt.getFullYear() + "_" + dt.getHours() + "" + dt.getMinutes() + "" + dt.getSeconds();
|
||||||
ActualizarUpload();
|
ActualizarUpload();
|
||||||
$('#modalDocumentosAuxiliares').modal('show');
|
$('#modalDocumentosAuxiliares').modal('show');
|
||||||
}
|
}
|
||||||
|
|
@ -213,8 +215,12 @@ this.GuardarAdjuntos = function (nombre) {
|
||||||
var ruta = DescTipoproyecto + '\\' + nombredoc;
|
var ruta = DescTipoproyecto + '\\' + nombredoc;
|
||||||
var Idetipoproyecto = 4;
|
var Idetipoproyecto = 4;
|
||||||
|
|
||||||
|
|
||||||
var Arraynombre = [];
|
var Arraynombre = [];
|
||||||
Arraynombre = nombredoc.split(".");
|
Arraynombre = nombredoc.split(".");
|
||||||
|
var nom = Arraynombre[0];
|
||||||
|
var ext = Arraynombre[Arraynombre.length - 1];
|
||||||
|
ruta = nom + FechaDocumentos + '.' + ext;
|
||||||
|
|
||||||
|
|
||||||
var AdjuntosDocumentosAuxiliar
|
var AdjuntosDocumentosAuxiliar
|
||||||
|
|
@ -225,7 +231,8 @@ this.GuardarAdjuntos = function (nombre) {
|
||||||
DescTipoDocumento: DescTipoproyecto,
|
DescTipoDocumento: DescTipoproyecto,
|
||||||
RutaFisica: RepositorioLocal + ruta,
|
RutaFisica: RepositorioLocal + ruta,
|
||||||
RutaDescarga: RepositorioVirtual + ruta,
|
RutaDescarga: RepositorioVirtual + ruta,
|
||||||
TipoArchivo: Arraynombre.pop()
|
TipoArchivo: Arraynombre.pop(),
|
||||||
|
TipoExpediente: null
|
||||||
}
|
}
|
||||||
|
|
||||||
model.Adjuntos = AdjuntosDocumentosAuxiliar;
|
model.Adjuntos = AdjuntosDocumentosAuxiliar;
|
||||||
|
|
@ -238,11 +245,16 @@ function ActualizarUpload() {
|
||||||
|
|
||||||
$('#fileupload').fileupload({
|
$('#fileupload').fileupload({
|
||||||
|
|
||||||
url: FileUploadHandler + '/FileUploadHandler.ashx?tipo=' + DescTipoproyecto,
|
url: FileUploadHandler + '/FileUploadHandler.ashx?tipo=' + FechaDocumentos,
|
||||||
type: 'POST',
|
type: 'POST',
|
||||||
|
|
||||||
add: function (e, data) {
|
add: function (e, data) {
|
||||||
|
|
||||||
|
if ($('#txtDescripcionDocAux').val() == '') {
|
||||||
|
toastr.warning("El nombre del documento es requerido", Message_Warning);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
data.submit();
|
data.submit();
|
||||||
},
|
},
|
||||||
progress: function (e, data) {
|
progress: function (e, data) {
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,9 @@ jQuery(document).ready(function () {
|
||||||
$('#tableGotitasPendientes').DataTable().column(3).visible(false);
|
$('#tableGotitasPendientes').DataTable().column(3).visible(false);
|
||||||
getDataModel();
|
getDataModel();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
this.getDataModel = function () {
|
this.getDataModel = function () {
|
||||||
CargarGotitasPendientes();
|
CargarGotitasPendientes();
|
||||||
|
|
@ -32,7 +35,7 @@ this.CargarGotitasPendientes = function () {
|
||||||
var uri = SinortWCF + '/api/ObtenerGotitasPendientes';
|
var uri = SinortWCF + '/api/ObtenerGotitasPendientes';
|
||||||
|
|
||||||
var model = {
|
var model = {
|
||||||
codigo: 'josnunez'
|
codigo: UsuarioSistema
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -87,8 +90,13 @@ $('#tableGotitasPendientes').on('click', 'button', function () {
|
||||||
$('#modalVer').modal('show');
|
$('#modalVer').modal('show');
|
||||||
|
|
||||||
$('#txtTitulo').val(InfoINombre);
|
$('#txtTitulo').val(InfoINombre);
|
||||||
$('#txtAreaDescripcion').val(InfoIDescripcion);
|
//$('#richText-dgbcu').val(InfoIDescripcion);
|
||||||
$('#txtFechaCaducidad').val(InfoIFechaCaducidad);
|
$('#txtFechaCaducidad').val(InfoIFechaCaducidad);
|
||||||
|
|
||||||
|
$("#txtAreaDescripcion").val(InfoIDescripcion.html);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
@ -56,13 +56,16 @@ $('#txtUsuarioUnico').change(function () {
|
||||||
this.ObtenerUsuarioAD = function () {
|
this.ObtenerUsuarioAD = function () {
|
||||||
|
|
||||||
|
|
||||||
var uri = SinorLoginWCF + '/api/ObtenerUsuarioAD';
|
|
||||||
|
var uri ='Login/ObtenerUsuarioAD';
|
||||||
model = {
|
model = {
|
||||||
Usuario: $('#txtUsuarioUnico').val(),
|
Usuario: $('#txtUsuarioUnico').val(),
|
||||||
Contrasena: $('#txtContrasena').val()
|
Contrasena: $('#txtContrasena').val()
|
||||||
}
|
}
|
||||||
|
|
||||||
AjaxPostData(uri, model, false, true, VerificarUsurarioBD, null,null);
|
AjaxPostData(uri, model, false, true, VerificarUsurarioBD, null, null);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -71,7 +74,7 @@ this.VerificarUsurarioBD = function (data) {
|
||||||
if (data.CodigoRespuesta == 'EXITOSO') {
|
if (data.CodigoRespuesta == 'EXITOSO') {
|
||||||
|
|
||||||
|
|
||||||
var uri = SinorLoginWCF + '/api/VerificarUsuarioBD';
|
var uri = 'Login/VerificarUsuarioBD';
|
||||||
model = {
|
model = {
|
||||||
codigo: data.LoginUsuario
|
codigo: data.LoginUsuario
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -40,8 +40,8 @@ jQuery(document).ready(function () {
|
||||||
ObtenerFichaTecnicaHistorico();
|
ObtenerFichaTecnicaHistorico();
|
||||||
} else {
|
} else {
|
||||||
ObtenerFichaTecnicaAlerta();
|
ObtenerFichaTecnicaAlerta();
|
||||||
ObtenerFicha();
|
ObtenerFicha();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
CargarEstado();
|
CargarEstado();
|
||||||
$('#divGuMo').show();
|
$('#divGuMo').show();
|
||||||
|
|
@ -378,6 +378,10 @@ this.GuardarFichaTecnica = function () {
|
||||||
}
|
}
|
||||||
|
|
||||||
LimpiarControles();
|
LimpiarControles();
|
||||||
|
if (IDFicha != null && IDFicha != "[$id]") {
|
||||||
|
document.location.href = "http://localhost/AYA.SlnSinort/Home/Normativa_Reglamentacion_Tecnica?solicitud=`";
|
||||||
|
}
|
||||||
|
|
||||||
//location.replace("javascript: EntrarVerEstadoFicha('1');");
|
//location.replace("javascript: EntrarVerEstadoFicha('1');");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -386,7 +390,7 @@ this.GuardarGotitaNormativa = function () {
|
||||||
fecha.setMonth(fecha.getMonth() + 1);
|
fecha.setMonth(fecha.getMonth() + 1);
|
||||||
|
|
||||||
GotitaNormativa = {
|
GotitaNormativa = {
|
||||||
Nombre: "!Informate¡",
|
Nombre: "¡Informate!",
|
||||||
Descripcion: "Nuevo documento normativo. " + $('#txtDescripcionDocAux').val(),
|
Descripcion: "Nuevo documento normativo. " + $('#txtDescripcionDocAux').val(),
|
||||||
FechaCaducidad: fecha,
|
FechaCaducidad: fecha,
|
||||||
IdDocumentoAdjunto: null,
|
IdDocumentoAdjunto: null,
|
||||||
|
|
@ -797,22 +801,21 @@ this.CargarFormulario = function (data) {
|
||||||
ENDREQUEST();
|
ENDREQUEST();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data.FichaTecnica != null && data.FichaTecnica.IdEstado == 8) {
|
if (data.FichaTecnica != null && data.FichaTecnica.IdEstado == 8) {
|
||||||
if (ValidarPermisos('Administrador Funcional').length <= 0)
|
if (ValidarPermisos('Administrador Funcional').length <= 0)
|
||||||
DeshabilitarCampos();
|
DeshabilitarCampos();
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$('#panelBotones').show();
|
$('#panelBotones').show();
|
||||||
$('#divGuMo').show();
|
$('#divGuMo').show();
|
||||||
if (UsuarioAlerta) {
|
if (UsuarioAlerta) {
|
||||||
$('#btnDesactivarAlerta').show();
|
$('#btnDesactivarAlerta').show();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$('#btnAlerta').show();
|
$('#btnAlerta').show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data.FichaTecnica != null && data.FichaTecnica.IdEstado == 10) {
|
if (data.FichaTecnica != null && data.FichaTecnica.IdEstado == 10) {
|
||||||
|
|
@ -962,7 +965,7 @@ this.CargarGridPalabraClaveFichaTecnica = function (data) {
|
||||||
|
|
||||||
var tablePalabraClave = $('#tablePalabraClave').DataTable();
|
var tablePalabraClave = $('#tablePalabraClave').DataTable();
|
||||||
var lista = data;
|
var lista = data;
|
||||||
|
var nombrepalabra;
|
||||||
$.each(lista, function (key, item) {
|
$.each(lista, function (key, item) {
|
||||||
|
|
||||||
var option = $("#ucItemsEliminar").html();
|
var option = $("#ucItemsEliminar").html();
|
||||||
|
|
@ -973,7 +976,11 @@ this.CargarGridPalabraClaveFichaTecnica = function (data) {
|
||||||
item.Descripcion,
|
item.Descripcion,
|
||||||
option]).draw();
|
option]).draw();
|
||||||
|
|
||||||
|
nombrepalabra = item.Descripcion + " ,"
|
||||||
|
|
||||||
});
|
});
|
||||||
|
$("#txtListaPalabraClave").val(nombrepalabra);
|
||||||
|
|
||||||
|
|
||||||
ENDREQUEST();
|
ENDREQUEST();
|
||||||
}
|
}
|
||||||
|
|
@ -1019,12 +1026,6 @@ this.AgregarPalabraClave = function () {
|
||||||
|
|
||||||
var option = $("#ucItemsEliminar").html();
|
var option = $("#ucItemsEliminar").html();
|
||||||
|
|
||||||
//var a = $("#hiddenPalabraClave").val();
|
|
||||||
|
|
||||||
//tablePalabraClave.row.add([2,
|
|
||||||
// 'dd',
|
|
||||||
// option]).draw();
|
|
||||||
|
|
||||||
var rowAdd = tablePalabraClave.row.add(
|
var rowAdd = tablePalabraClave.row.add(
|
||||||
[$("#hiddenPalabraClave").val(),
|
[$("#hiddenPalabraClave").val(),
|
||||||
$("#txtPalabraClave").val(),
|
$("#txtPalabraClave").val(),
|
||||||
|
|
@ -1037,6 +1038,20 @@ this.AgregarPalabraClave = function () {
|
||||||
toastr.success(Message_Default, Message_Success);
|
toastr.success(Message_Default, Message_Success);
|
||||||
$('#hiddenPalabraClave').val('');
|
$('#hiddenPalabraClave').val('');
|
||||||
$('#txtPalabraClave').val('');
|
$('#txtPalabraClave').val('');
|
||||||
|
$('#txtListaPalabraClave').val('');
|
||||||
|
var nombrepalabra = "";
|
||||||
|
tablePalabraClave = $('#tablePalabraClave').DataTable();
|
||||||
|
|
||||||
|
var data = tablePalabraClave
|
||||||
|
.rows()
|
||||||
|
.data();
|
||||||
|
|
||||||
|
$.each(data, function (key, item) {
|
||||||
|
|
||||||
|
nombrepalabra =nombrepalabra + item[1] + ", "
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#txtListaPalabraClave').val(nombrepalabra);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.LimpiarPalabraClave = function () {
|
this.LimpiarPalabraClave = function () {
|
||||||
|
|
@ -1099,11 +1114,13 @@ function ActualizarUpload() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ValidarNombre();
|
ValidarNombre();
|
||||||
if (ExisteNombreDoc)
|
if (ExisteNombreDoc) {
|
||||||
{
|
|
||||||
toastr.warning("El nombre del documento ya existe", Message_Warning);
|
toastr.warning("El nombre del documento ya existe", Message_Warning);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var fr = new FileReader();
|
||||||
|
fr.readAsArrayBuffer(data.files[0]);
|
||||||
data.submit();
|
data.submit();
|
||||||
},
|
},
|
||||||
progress: function (e, data) {
|
progress: function (e, data) {
|
||||||
|
|
@ -1124,7 +1141,11 @@ function ActualizarUpload() {
|
||||||
|
|
||||||
success: function (response, status) {
|
success: function (response, status) {
|
||||||
|
|
||||||
|
if (response.indexOf('Success') > -1){
|
||||||
GuardarAdjuntos(NombreDocumento);
|
GuardarAdjuntos(NombreDocumento);
|
||||||
|
} else {
|
||||||
|
toastr.warning("Error al adjuntar el archivo", Message_Warning);
|
||||||
|
}
|
||||||
$('#progress .progress-bar').css(
|
$('#progress .progress-bar').css(
|
||||||
'width', '0%');
|
'width', '0%');
|
||||||
ENDREQUEST();
|
ENDREQUEST();
|
||||||
|
|
@ -1206,6 +1227,18 @@ $('#tableDocFichaTecnica').on('click', 'button', function () {
|
||||||
});
|
});
|
||||||
//fin adjuntos
|
//fin adjuntos
|
||||||
|
|
||||||
|
this.ValidarNombre = function () {
|
||||||
|
model = {
|
||||||
|
Nombre: $('#txtDescripcionDocAux').val()
|
||||||
|
}
|
||||||
|
var uri = SinortWCF + '/api/VerificarNombre';
|
||||||
|
AjaxPostData(uri, model, false, false, ExisteNombre, null, null);
|
||||||
|
}
|
||||||
|
this.ExisteNombre = function (data) {
|
||||||
|
if (data > 0)
|
||||||
|
ExisteNombreDoc = true;
|
||||||
|
}
|
||||||
|
|
||||||
this.DivulgarFichaTecnica = function ()
|
this.DivulgarFichaTecnica = function ()
|
||||||
{
|
{
|
||||||
var identificacion = $("#ucIdentificacion").html();
|
var identificacion = $("#ucIdentificacion").html();
|
||||||
|
|
@ -1334,6 +1367,7 @@ this.EnviarCorreoDivulgar = function () {
|
||||||
model.Mensaje = $("#txtMensaje").val();
|
model.Mensaje = $("#txtMensaje").val();
|
||||||
model.PlantillaEmail = Plantilla;
|
model.PlantillaEmail = Plantilla;
|
||||||
model.ListaParticipantes = ArrayDestinatarios;
|
model.ListaParticipantes = ArrayDestinatarios;
|
||||||
|
model.Link = window.location.href;
|
||||||
|
|
||||||
AjaxPostData(uri, model, false, true, null, null, null);
|
AjaxPostData(uri, model, false, true, null, null, null);
|
||||||
$('#modalDivulgar').modal('hide');
|
$('#modalDivulgar').modal('hide');
|
||||||
|
|
@ -1426,6 +1460,8 @@ this.EnviarCorreoAlerta = function () {
|
||||||
var uri = SinortWCF + '/api/EnviarCorreoFichaTecnica';
|
var uri = SinortWCF + '/api/EnviarCorreoFichaTecnica';
|
||||||
model.FichaTecnica = FichaTecnica;
|
model.FichaTecnica = FichaTecnica;
|
||||||
model.PlantillaEmail = Plantilla;
|
model.PlantillaEmail = Plantilla;
|
||||||
|
model.Link = window.location.href;
|
||||||
|
|
||||||
|
|
||||||
AjaxPostData(uri, model, false, true, null, null, null);
|
AjaxPostData(uri, model, false, true, null, null, null);
|
||||||
}
|
}
|
||||||
|
|
@ -1648,6 +1684,22 @@ $('#tablePalabraClave').on('click', 'button', function () {
|
||||||
|
|
||||||
var tablePalabraClave = $('#tablePalabraClave').DataTable();
|
var tablePalabraClave = $('#tablePalabraClave').DataTable();
|
||||||
tablePalabraClave.row($(this).parents('tr')).remove().draw();
|
tablePalabraClave.row($(this).parents('tr')).remove().draw();
|
||||||
|
|
||||||
|
$('#txtListaPalabraClave').val('');
|
||||||
|
var nombrepalabra = "";
|
||||||
|
tablePalabraClave = $('#tablePalabraClave').DataTable();
|
||||||
|
|
||||||
|
var data = tablePalabraClave
|
||||||
|
.rows()
|
||||||
|
.data();
|
||||||
|
|
||||||
|
$.each(data, function (key, item) {
|
||||||
|
|
||||||
|
nombrepalabra = nombrepalabra + item[1] + ", "
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#txtListaPalabraClave').val(nombrepalabra);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#tablePalabrasClaves').on('click', 'button', function () {
|
$('#tablePalabrasClaves').on('click', 'button', function () {
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,8 @@ jQuery(document).ready(function () {
|
||||||
|
|
||||||
CargarTipoSolicitud();
|
CargarTipoSolicitud();
|
||||||
getDataModel();
|
getDataModel();
|
||||||
|
|
||||||
|
|
||||||
$('#tableDocSolicitud').TableInit(0, false, false, false, false, null, null);
|
$('#tableDocSolicitud').TableInit(0, false, false, false, false, null, null);
|
||||||
$('#tableDocSolicitud').DataTable().column(0).visible(false);
|
$('#tableDocSolicitud').DataTable().column(0).visible(false);
|
||||||
$('#tableDocSolicitud').DataTable().column(4).visible(false);
|
$('#tableDocSolicitud').DataTable().column(4).visible(false);
|
||||||
|
|
@ -274,6 +275,9 @@ this.ObtenerUsuarioRol = function (data) {
|
||||||
if (modelPost.listaCodigos.indexOf(1) == -1)
|
if (modelPost.listaCodigos.indexOf(1) == -1)
|
||||||
modelPost.listaCodigos.push(Roles.FuncionalExperto.Codigo);
|
modelPost.listaCodigos.push(Roles.FuncionalExperto.Codigo);
|
||||||
|
|
||||||
|
if (modelPost.listaCodigos.indexOf(2) == -1)
|
||||||
|
modelPost.listaCodigos.push(Roles.LiderSuplente.Codigo);
|
||||||
|
|
||||||
var uri = CatalogosWCF + '/api/ObtenerUsuariosRol';
|
var uri = CatalogosWCF + '/api/ObtenerUsuariosRol';
|
||||||
AjaxPostData(uri, modelPost, false, false, GuardarTareasPendientes, null, null);
|
AjaxPostData(uri, modelPost, false, false, GuardarTareasPendientes, null, null);
|
||||||
|
|
||||||
|
|
@ -311,7 +315,7 @@ this.GuardarTareasPendientes = function (data) {
|
||||||
|
|
||||||
AjaxPostData(uri, model, false, true, null, null, null);
|
AjaxPostData(uri, model, false, true, null, null, null);
|
||||||
|
|
||||||
//EnviarCorreo();
|
EnviarCorreo();
|
||||||
LimpiarSolicitud();
|
LimpiarSolicitud();
|
||||||
//location.reload();
|
//location.reload();
|
||||||
|
|
||||||
|
|
@ -329,7 +333,7 @@ this.EnviarCorreo = function () {
|
||||||
model.Link = LinkSolicitudTarea;
|
model.Link = LinkSolicitudTarea;
|
||||||
model.ListaUsuariosCorreo = ListaUsuariosCorreo;
|
model.ListaUsuariosCorreo = ListaUsuariosCorreo;
|
||||||
model.IdSolicitud = IdSolicitud;
|
model.IdSolicitud = IdSolicitud;
|
||||||
AjaxPostData(uri, model, false, false, null, null, null);
|
AjaxPostData(uri, model, false, true, null, null, null);
|
||||||
|
|
||||||
ENDREQUEST();
|
ENDREQUEST();
|
||||||
|
|
||||||
|
|
@ -342,8 +346,8 @@ this.LeerFormulario = function () {
|
||||||
var Solicitud
|
var Solicitud
|
||||||
= {
|
= {
|
||||||
IdTipoSolicitud: IdTipoSolicitud,
|
IdTipoSolicitud: IdTipoSolicitud,
|
||||||
IdDocumento: IsNullOrEmpty(modelDocumentoAdjunto) ? 0 : modelDocumentoAdjunto.Adjuntos.IdDocumentoAdjunto,
|
IdDocumento: IsNullOrEmpty(modelDocumentoAdjunto) ? null : modelDocumentoAdjunto.Adjuntos.IdDocumentoAdjunto,
|
||||||
DescripcionDocumento: IsNullOrEmpty(modelDocumentoAdjunto) ? 0 : modelDocumentoAdjunto.Adjuntos.Nombre,
|
DescripcionDocumento: IsNullOrEmpty(modelDocumentoAdjunto) ? null : modelDocumentoAdjunto.Adjuntos.Nombre,
|
||||||
DescripcionTipoSolicitud: DescTipoSolicitud,
|
DescripcionTipoSolicitud: DescTipoSolicitud,
|
||||||
UsuarioSistema: $("#txtUsuarioSistema").val(),
|
UsuarioSistema: $("#txtUsuarioSistema").val(),
|
||||||
CargoActual: $("#txtCargoActual").val(),
|
CargoActual: $("#txtCargoActual").val(),
|
||||||
|
|
|
||||||
|
|
@ -100,14 +100,15 @@
|
||||||
|
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
@*---------------------Descripción ---------------------------------------------------------*@
|
@*---------------------Descripción ---------------------------------------------------------*@
|
||||||
<div class="form-group">
|
|
||||||
<label class="col-sm-4 control-label ControlsForms" id="lblDescDocAux">Descripción</label>
|
<div class="form-group " id="divNombreDocAux">
|
||||||
<div class="input-group input-group-sm col-lg-8 col-md-8 col-sm-8 col-xs-8">
|
<label class="col-sm-4 control-label ControlsForms" id="lblDescDocAux">Nombre</label>
|
||||||
<input type="text" id="txtDescripcionDocAux" name="txtDescripcionDocAux" class="form-control imput-xs" required="required" />
|
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
||||||
|
<textarea name="txtDescripcionDocAux" rows="5" cols="39" id="txtDescripcionDocAux" style="resize: none"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@*---------------------Comentario ---------------------------------------------------------*@
|
@*---------------------Comentario ---------------------------------------------------------*@
|
||||||
<div class="form-group " id="divComentarioDocAux">
|
<div class="form-group " id="divComentarioDocAux" style="display:none">
|
||||||
<label class="col-sm-4 control-label ControlsForms" id="lblComentarioDocAux">Comentario</label>
|
<label class="col-sm-4 control-label ControlsForms" id="lblComentarioDocAux">Comentario</label>
|
||||||
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
||||||
<textarea name="txtComentarioDocAux" rows="5" cols="39" id="txtComentarioDocAux" style="resize: none"></textarea>
|
<textarea name="txtComentarioDocAux" rows="5" cols="39" id="txtComentarioDocAux" style="resize: none"></textarea>
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
|
|
||||||
<form id="formFichaTecnica" class="form-horizontal" role="form">
|
<form id="formFichaTecnica" class="form-horizontal" role="form">
|
||||||
|
<input type="hidden" id="hiddenHref" value="@string.Concat(Url.Action("View", "Controller", null), ViewBag.QueryEncripted)">
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<h3 style="float:left;"> <i class="fa fa-file-text"></i> Ficha Técnica </h3>
|
<h3 style="float:left;"> <i class="fa fa-file-text"></i> Ficha Técnica </h3>
|
||||||
|
|
||||||
|
|
@ -51,7 +52,7 @@
|
||||||
<div class="form-group " id="divIdentificacion">
|
<div class="form-group " id="divIdentificacion">
|
||||||
<label class="col-sm-4 control-label ControlsForms" id="lblIdentificacion">Identificación</label>
|
<label class="col-sm-4 control-label ControlsForms" id="lblIdentificacion">Identificación</label>
|
||||||
<div class="input-group input-group-sm col-lg-8 col-md-8 col-sm-8 col-xs-8">
|
<div class="input-group input-group-sm col-lg-8 col-md-8 col-sm-8 col-xs-8">
|
||||||
<textarea name="txtAreaIdentificacion" rows="8" cols="43" id="txtAreaIdentificacion" style="resize: none"></textarea>
|
<textarea name="txtAreaIdentificacion" rows="8" cols="43" id="txtAreaIdentificacion" style="resize: none" required="required"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -68,7 +69,7 @@
|
||||||
<div class="form-group " id="divDocumentoIngreso">
|
<div class="form-group " id="divDocumentoIngreso">
|
||||||
<label class="col-sm-4 control-label ControlsForms" id="lblDocumentoIngreso">Documento de ingreso a SINORT </label>
|
<label class="col-sm-4 control-label ControlsForms" id="lblDocumentoIngreso">Documento de ingreso a SINORT </label>
|
||||||
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
||||||
<input name="txtDocumentoIngreso" class="form-control imput-xs" id="txtDocumentoIngreso" type="text" />
|
<input name="txtDocumentoIngreso" class="form-control imput-xs" id="txtDocumentoIngreso" type="text" required="required" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -76,7 +77,7 @@
|
||||||
<div class="form-group " id="divDocumentoEgreso">
|
<div class="form-group " id="divDocumentoEgreso">
|
||||||
<label class="col-sm-4 control-label ControlsForms" id="lblDocumentoEgreso">Documento de egreso de SINORT </label>
|
<label class="col-sm-4 control-label ControlsForms" id="lblDocumentoEgreso">Documento de egreso de SINORT </label>
|
||||||
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
||||||
<input name="txtDocumentoEgreso" class="form-control imput-xs" id="txtDocumentoEgreso" type="text" />
|
<input name="txtDocumentoEgreso" class="form-control imput-xs" id="txtDocumentoEgreso" type="text" required="required" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -211,7 +212,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@*---------------------PalabraClave---------------------------------------------------------*@
|
@*---------------------PalabraClave---------------------------------------------------------*@
|
||||||
<div class="form-group " id="divPalabraClave">
|
@*<div class="form-group " id="divPalabraClave">
|
||||||
<label class="col-sm-4 control-label ControlsForms" id="lblPalabraClave">Palabra Clave</label>
|
<label class="col-sm-4 control-label ControlsForms" id="lblPalabraClave">Palabra Clave</label>
|
||||||
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
||||||
<button class=" btn btn-success btn-medium btn-margin-catalogo" id="btnPalabraClave" type="button">
|
<button class=" btn btn-success btn-medium btn-margin-catalogo" id="btnPalabraClave" type="button">
|
||||||
|
|
@ -219,6 +220,18 @@
|
||||||
</i> Agregar
|
</i> Agregar
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>*@
|
||||||
|
<div class="form-group " id="divPalabraClave">
|
||||||
|
<label class="col-sm-4 control-label ControlsForms" id="lblPalabraClave">Palabra clave</label>
|
||||||
|
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
||||||
|
<textarea name="txtListaPalabraClave" rows="4" cols="37" id="txtListaPalabraClave" style="resize: none" readonly="readonly"></textarea>
|
||||||
|
<span class="input-group-btn">
|
||||||
|
<button class="btn btn-success btn-medium btn-margin-catalogo" id="btnPalabraClave" type="button">
|
||||||
|
<i class="fa fa-plus"></i>
|
||||||
|
</button>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@*---------------------Fecha Publicacion Documento Tecnico---------------------------------------------*@
|
@*---------------------Fecha Publicacion Documento Tecnico---------------------------------------------*@
|
||||||
|
|
@ -299,12 +312,7 @@
|
||||||
|
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
@*---------------------Descripción ---------------------------------------------------------*@
|
@*---------------------Descripción ---------------------------------------------------------*@
|
||||||
@*<div class="form-group">
|
|
||||||
<label class="col-sm-4 control-label ControlsForms" id="lblDescDocAux">Descripción</label>
|
|
||||||
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
|
||||||
<input id="txtDescripcionDocAux" name="txtDescripcionDocAux" rows="5" cols="39" style="resize: none" />
|
|
||||||
</div>
|
|
||||||
</div>*@
|
|
||||||
<div class="form-group " id="divNombreDocAux" >
|
<div class="form-group " id="divNombreDocAux" >
|
||||||
<label class="col-sm-4 control-label ControlsForms" id="lblDescDocAux">Nombre</label>
|
<label class="col-sm-4 control-label ControlsForms" id="lblDescDocAux">Nombre</label>
|
||||||
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
<div class="input-group input-group-sm col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@
|
||||||
</appSettings>
|
</appSettings>
|
||||||
|
|
||||||
<system.webServer>
|
<system.webServer>
|
||||||
|
|
||||||
<handlers>
|
<handlers>
|
||||||
<remove name="BlockViewHandler"/>
|
<remove name="BlockViewHandler"/>
|
||||||
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" />
|
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" />
|
||||||
|
|
@ -37,8 +38,7 @@
|
||||||
</system.webServer>
|
</system.webServer>
|
||||||
|
|
||||||
<system.web>
|
<system.web>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<compilation>
|
<compilation>
|
||||||
|
|
@ -46,5 +46,6 @@
|
||||||
<add assembly="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
<add assembly="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
||||||
</assemblies>
|
</assemblies>
|
||||||
</compilation>
|
</compilation>
|
||||||
|
|
||||||
</system.web>
|
</system.web>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
|
||||||
4255
AYA.SlnSynor/AYA.SlnSynor/Web References/Vision2020/Reference.cs
Normal file
4255
AYA.SlnSynor/AYA.SlnSynor/Web References/Vision2020/Reference.cs
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<Results>
|
||||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.DiscoveryDocumentReference" url="http://aya-vsrv-scanv/Vision2020ServerAPIOnLine/wsapi.asmx?disco" filename="wsapi.disco" />
|
||||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://aya-vsrv-scanv/Vision2020ServerAPIOnLine/wsapi.asmx?wsdl" filename="wsapi.wsdl" />
|
||||||
|
</Results>
|
||||||
|
</DiscoveryClientResultsFile>
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/">
|
||||||
|
<contractRef ref="http://aya-vsrv-scanv/Vision2020ServerAPIOnLine/wsapi.asmx?wsdl" docRef="http://aya-vsrv-scanv/Vision2020ServerAPIOnLine/wsapi.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" />
|
||||||
|
<soap address="http://aya-vsrv-scanv/Vision2020ServerAPIOnLine/wsapi.asmx" xmlns:q1="http://vision2020serverapi.org/" binding="q1:wsapiSoap" xmlns="http://schemas.xmlsoap.org/disco/soap/" />
|
||||||
|
<soap address="http://aya-vsrv-scanv/Vision2020ServerAPIOnLine/wsapi.asmx" xmlns:q2="http://vision2020serverapi.org/" binding="q2:wsapiSoap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" />
|
||||||
|
</discovery>
|
||||||
5880
AYA.SlnSynor/AYA.SlnSynor/Web References/Vision2020/wsapi.wsdl
Normal file
5880
AYA.SlnSynor/AYA.SlnSynor/Web References/Vision2020/wsapi.wsdl
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -13,6 +13,9 @@
|
||||||
<section name="openid" type="DotNetOpenAuth.Configuration.OpenIdElement, DotNetOpenAuth.OpenId" requirePermission="false" allowLocation="true" />
|
<section name="openid" type="DotNetOpenAuth.Configuration.OpenIdElement, DotNetOpenAuth.OpenId" requirePermission="false" allowLocation="true" />
|
||||||
<section name="oauth" type="DotNetOpenAuth.Configuration.OAuthElement, DotNetOpenAuth.OAuth" requirePermission="false" allowLocation="true" />
|
<section name="oauth" type="DotNetOpenAuth.Configuration.OAuthElement, DotNetOpenAuth.OAuth" requirePermission="false" allowLocation="true" />
|
||||||
</sectionGroup>
|
</sectionGroup>
|
||||||
|
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
|
||||||
|
<section name="AYA.SlnSinort.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||||
|
</sectionGroup>
|
||||||
</configSections>
|
</configSections>
|
||||||
<appSettings>
|
<appSettings>
|
||||||
<add key="webpages:Version" value="3.0.0.0" />
|
<add key="webpages:Version" value="3.0.0.0" />
|
||||||
|
|
@ -20,13 +23,13 @@
|
||||||
<add key="ClientValidationEnabled" value="true" />
|
<add key="ClientValidationEnabled" value="true" />
|
||||||
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
||||||
|
|
||||||
<!--<add key="SinortWCF" value="http://10.50.1.123:2070/Sinort.svc" />
|
<add key="SinortWCF" value="http://10.50.1.123:2070/Sinort.svc" />
|
||||||
<add key="SinortCatalogosWCF" value="http://10.50.1.123:2070/SinortCatalogos.svc" />
|
<add key="SinortCatalogosWCF" value="http://10.50.1.123:2070/SinortCatalogos.svc" />
|
||||||
<add key="FileRepository" value="\\10.50.1.97\Aplicaciones\SINORT(6075)\Raiz\DocumentosSinort\" />
|
<add key="FileRepository" value="\\10.50.1.97\Aplicaciones\SINORT(6075)\Raiz\DocumentosSinort\" />
|
||||||
<add key="HttpRepository" value="http://10.50.1.97:6075/DocumentosSinort/" />
|
<add key="HttpRepository" value="http://10.50.1.97:6075/DocumentosSinort/" />
|
||||||
<add key="FileUploadHandler" value="http://10.50.1.97:6075/FileUploadHandler" />
|
<add key="FileUploadHandler" value="http://10.50.1.97:6075/FileUploadHandler" />
|
||||||
<add key="RutaLogoSINORT" value="http://10.50.1.97:6075/dist/img/" />
|
<add key="RutaLogoSINORT" value="http://10.50.1.97:6075/dist/img/" />
|
||||||
<add key="RutaImagenes" value="http://10.50.1.97:6075/bower_components/Ionicons/png/512/" /> -->
|
<add key="RutaImagenes" value="http://10.50.1.97:6075/bower_components/Ionicons/png/512/" />
|
||||||
|
|
||||||
|
|
||||||
<!--<add key="SinortWCF" value="http://aya-vsrv-wstt:2005/Sinort.svc" />
|
<!--<add key="SinortWCF" value="http://aya-vsrv-wstt:2005/Sinort.svc" />
|
||||||
|
|
@ -37,19 +40,28 @@
|
||||||
<add key="RutaLogoSINORT" value="http://AYA-VSRV-APPTT:2525/dist/img/" />
|
<add key="RutaLogoSINORT" value="http://AYA-VSRV-APPTT:2525/dist/img/" />
|
||||||
<add key="RutaImagenes" value="http://AYA-VSRV-APPTT:2525/bower_components/Ionicons/png/512/" /> -->
|
<add key="RutaImagenes" value="http://AYA-VSRV-APPTT:2525/bower_components/Ionicons/png/512/" /> -->
|
||||||
|
|
||||||
<add key="MaxSizeFileLoadKB" value="5120" />
|
<add key="MaxSizeFileLoadKB" value="2147483647" />
|
||||||
<add key="MaxCountFileLoad" value="3" />
|
<add key="MaxCountFileLoad" value="3" />
|
||||||
<add key="SinortWCF" value="http://localhost/AYA.SlnSinort.WCF/Sinort.svc" />
|
<!--llaves vision 2020-->
|
||||||
|
<add key="const_strUsuario" value="usersinort"/>
|
||||||
|
<add key="const_strClave" value="usersinort"/>
|
||||||
|
<!--Pruebas-->
|
||||||
|
<add key="const_strArchivadores" value="Sistemas"/>
|
||||||
|
<add key="const_strGaveta" value="Sinort"/>
|
||||||
|
<add key="const_strLlaves" value="Nombre_Documento"/>
|
||||||
|
|
||||||
|
<!--<add key="SinortWCF" value="http://localhost/AYA.SlnSinort.WCF/Sinort.svc" />
|
||||||
<add key="SinortCatalogosWCF" value="http://localhost/AYA.SlnSinort.WCF/SinortCatalogos.svc" />
|
<add key="SinortCatalogosWCF" value="http://localhost/AYA.SlnSinort.WCF/SinortCatalogos.svc" />
|
||||||
<add key="FileRepository" value="C:\DocumentosSinort\" />
|
<add key="FileRepository" value="C:\DocumentosSinort\" />
|
||||||
<add key="HttpRepository" value="http://localhost/AYA.SlnSinort/DocumentosSINORT/" />
|
<add key="HttpRepository" value="http://localhost/AYA.SlnSinort/DocumentosSINORT/" />
|
||||||
<add key="FileUploadHandler" value="http://localhost/AYA.SlnSinort/FileUploadHandler" />
|
<add key="FileUploadHandler" value="http://localhost/AYA.SlnSinort/FileUploadHandler" />
|
||||||
<add key="RutaLogoSINORT" value="http://localhost/AYA.SlnSinort/dist/img/" />
|
<add key="RutaLogoSINORT" value="http://localhost/AYA.SlnSinort/dist/img/" />
|
||||||
<add key="RutaImagenes" value="http://localhost/AYA.SlnSinort/bower_components/Ionicons/png/512/" />
|
<add key="RutaImagenes" value="http://localhost/AYA.SlnSinort/bower_components/Ionicons/png/512/" /> -->
|
||||||
</appSettings>
|
</appSettings>
|
||||||
<system.web>
|
<system.web>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<sessionState timeout="20">
|
<sessionState timeout="20">
|
||||||
</sessionState>
|
</sessionState>
|
||||||
|
|
@ -70,6 +82,7 @@
|
||||||
</system.web>
|
</system.web>
|
||||||
<system.webServer>
|
<system.webServer>
|
||||||
|
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<remove name="FormsAuthentication" />
|
<remove name="FormsAuthentication" />
|
||||||
</modules>
|
</modules>
|
||||||
|
|
@ -87,6 +100,9 @@
|
||||||
<add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=14.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
|
<add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=14.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
|
||||||
</handlers>
|
</handlers>
|
||||||
<validation validateIntegratedModeConfiguration="false" />
|
<validation validateIntegratedModeConfiguration="false" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</system.webServer>
|
</system.webServer>
|
||||||
<runtime>
|
<runtime>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
|
@ -223,7 +239,17 @@
|
||||||
</wsHttpBinding>
|
</wsHttpBinding>
|
||||||
</bindings>
|
</bindings>
|
||||||
<client>
|
<client>
|
||||||
|
<endpoint address="http://aya-vsrv-wstt:2005/Sinort.svc/soap"
|
||||||
|
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ISinort"
|
||||||
|
contract="ServicioSinortWCF.ISinort" name="WSHttpBinding_ISinort" />
|
||||||
</client>
|
</client>
|
||||||
</system.serviceModel>
|
</system.serviceModel>
|
||||||
|
|
||||||
|
<applicationSettings>
|
||||||
|
<AYA.SlnSinort.Properties.Settings>
|
||||||
|
<setting name="AYA_SlnSinort_Vision2020_wsapi" serializeAs="String">
|
||||||
|
<value>http://aya-vsrv-scanv/Vision2020ServerAPIOnLine/wsapi.asmx</value>
|
||||||
|
</setting>
|
||||||
|
</AYA.SlnSinort.Properties.Settings>
|
||||||
|
</applicationSettings>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
@ -15,6 +15,30 @@ namespace AYA.SlnSinortModel.DAL.Sinort
|
||||||
{
|
{
|
||||||
Log log = new Log("DocumentosAdjuntosDAL");
|
Log log = new Log("DocumentosAdjuntosDAL");
|
||||||
|
|
||||||
|
public int VerificarNombre(AdjuntosJSON model)
|
||||||
|
{
|
||||||
|
|
||||||
|
int nombre = 0;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (SinortContex db = new SinortContex())
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
nombre = db.DocumentosAdjuntos.Where(r => r.Nombre.ToString() == model.Nombre.ToLower() && r.IdTipoDocumento == 3).Count();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
log.Error(ex);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return nombre;
|
||||||
|
}
|
||||||
|
|
||||||
public AdjuntosJSON GuardarAdjuntos(AdjuntosJSON model)
|
public AdjuntosJSON GuardarAdjuntos(AdjuntosJSON model)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|
|
||||||
|
|
@ -56,6 +56,7 @@ namespace AYA.SlnSinortModel.Entidades
|
||||||
public PlantillaEmail PlantillaEmail { get; set; }
|
public PlantillaEmail PlantillaEmail { get; set; }
|
||||||
public List<Usuario> ListaParticipantes { get; set; }
|
public List<Usuario> ListaParticipantes { get; set; }
|
||||||
public string Mensaje { get; set; }
|
public string Mensaje { get; set; }
|
||||||
|
public string Link { get; set; }
|
||||||
public int? IdPalabra { get; set; }
|
public int? IdPalabra { get; set; }
|
||||||
public int? IdFichaTecnica { get; set; }
|
public int? IdFichaTecnica { get; set; }
|
||||||
public string UsuarioSistema { get; set; }
|
public string UsuarioSistema { get; set; }
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue