├── .gitignore ├── BaseDeDatos └── DBClinica_test.sql ├── ProyectoWeb └── CapaPresentacion │ ├── CapaAccesoDatos │ ├── CapaAccesoDatos.csproj │ ├── CitaDAO.cs │ ├── Conexion.cs │ ├── DiagnosticoDAO.cs │ ├── EmpleadoDAO.cs │ ├── EspecialidadDAO.cs │ ├── HorarioAtencionDAO.cs │ ├── MedicoDAO.cs │ ├── MenuDAO.cs │ ├── PacienteDAO.cs │ ├── PermisoDAO.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReporteDAO.cs │ ├── bin │ │ └── Debug │ │ │ ├── CapaAccesoDatos.dll │ │ │ ├── CapaAccesoDatos.pdb │ │ │ ├── CapaEntidades.dll │ │ │ └── CapaEntidades.pdb │ └── obj │ │ └── Debug │ │ ├── CapaAccesoDatos.csproj.FileListAbsolute.txt │ │ ├── CapaAccesoDatos.csprojResolveAssemblyReference.cache │ │ ├── CapaAccesoDatos.dll │ │ ├── CapaAccesoDatos.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── CapaEntidades │ ├── CapaEntidades.csproj │ ├── Cita.cs │ ├── Diagnostico.cs │ ├── Empleado.cs │ ├── Especialidad.cs │ ├── HistoriaClinica.cs │ ├── Hora.cs │ ├── HorarioAtencion.cs │ ├── Medico.cs │ ├── Menu.cs │ ├── Paciente.cs │ ├── Permiso.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TipoEmpleado.cs │ ├── bin │ │ └── Debug │ │ │ ├── CapaEntidades.dll │ │ │ └── CapaEntidades.pdb │ └── obj │ │ └── Debug │ │ ├── CapaEntidades.csproj.FileListAbsolute.txt │ │ ├── CapaEntidades.dll │ │ ├── CapaEntidades.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── CapaLogicaNegocio │ ├── CapaLogicaNegocio.csproj │ ├── CitaLN.cs │ ├── DiagnosticoLN.cs │ ├── EmpleadoLN.cs │ ├── EspecialidadLN.cs │ ├── HorarioAtencionLN.cs │ ├── MedicoLN.cs │ ├── MenuLN.cs │ ├── PacienteLN.cs │ ├── PermisoLN.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReporteLN.cs │ ├── bin │ │ └── Debug │ │ │ ├── CapaAccesoDatos.dll │ │ │ ├── CapaAccesoDatos.pdb │ │ │ ├── CapaEntidades.dll │ │ │ ├── CapaEntidades.pdb │ │ │ ├── CapaLogicaNegocio.dll │ │ │ └── CapaLogicaNegocio.pdb │ └── obj │ │ └── Debug │ │ ├── CapaLogicaNegocio.csproj.FileListAbsolute.txt │ │ ├── CapaLogicaNegocio.csprojResolveAssemblyReference.cache │ │ ├── CapaLogicaNegocio.dll │ │ ├── CapaLogicaNegocio.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── CapaPresentacion │ ├── BadRequest.aspx │ ├── BadRequest.aspx.cs │ ├── BadRequest.aspx.designer.cs │ ├── CapaPresentacion.csproj │ ├── CapaPresentacion.csproj.user │ ├── Custom │ │ ├── BasePage.cs │ │ ├── CustomMembershipProvider.cs │ │ └── SessionManager.cs │ ├── ErrorPage.aspx │ ├── ErrorPage.aspx.cs │ ├── ErrorPage.aspx.designer.cs │ ├── GestionarAtencionCita.aspx │ ├── GestionarAtencionCita.aspx.cs │ ├── GestionarAtencionCita.aspx.designer.cs │ ├── GestionarAtencionPaciente.aspx │ ├── GestionarAtencionPaciente.aspx.cs │ ├── GestionarAtencionPaciente.aspx.designer.cs │ ├── GestionarHorarioAtencion.aspx │ ├── GestionarHorarioAtencion.aspx.cs │ ├── GestionarHorarioAtencion.aspx.designer.cs │ ├── GestionarMenus.aspx │ ├── GestionarMenus.aspx.cs │ ├── GestionarMenus.aspx.designer.cs │ ├── GestionarPaciente.aspx │ ├── GestionarPaciente.aspx.cs │ ├── GestionarPaciente.aspx.designer.cs │ ├── GestionarPermisos.aspx │ ├── GestionarPermisos.aspx.cs │ ├── GestionarPermisos.aspx.designer.cs │ ├── GestionarReservaCitas.aspx │ ├── GestionarReservaCitas.aspx.cs │ ├── GestionarReservaCitas.aspx.designer.cs │ ├── Home.Master │ ├── Home.Master.cs │ ├── Home.Master.designer.cs │ ├── Login.aspx │ ├── Login.aspx.cs │ ├── Login.aspx.designer.cs │ ├── MasterError.Master │ ├── MasterError.Master.cs │ ├── MasterError.Master.designer.cs │ ├── PanelGeneral.aspx │ ├── PanelGeneral.aspx.cs │ ├── PanelGeneral.aspx.designer.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── bin │ │ ├── CapaAccesoDatos.dll │ │ ├── CapaAccesoDatos.pdb │ │ ├── CapaEntidades.dll │ │ ├── CapaEntidades.pdb │ │ ├── CapaLogicaNegocio.dll │ │ ├── CapaLogicaNegocio.pdb │ │ ├── CapaPresentacion.dll │ │ ├── CapaPresentacion.dll.config │ │ └── CapaPresentacion.pdb │ ├── css │ │ ├── AdminLTE.css │ │ ├── bootstrap-slider │ │ │ └── slider.css │ │ ├── bootstrap-wysihtml5 │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ └── bootstrap3-wysihtml5.min.css │ │ ├── bootstrap.min.css │ │ ├── colorpicker │ │ │ ├── bootstrap-colorpicker.css │ │ │ └── bootstrap-colorpicker.min.css │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.css │ │ │ └── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ ├── datepicker │ │ │ └── datepicker3.css │ │ ├── daterangepicker │ │ │ └── daterangepicker-bs3.css │ │ ├── font-awesome.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── iCheck │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ ├── ionicons.min.css │ │ ├── ionslider │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ └── ion.rangeSlider.skinNice.css │ │ ├── jvectormap │ │ │ └── jquery-jvectormap-1.2.2.css │ │ ├── morris │ │ │ └── morris.css │ │ └── timepicker │ │ │ ├── bootstrap-timepicker.css │ │ │ └── bootstrap-timepicker.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfonts.svg │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── Thumbs.db │ │ ├── ajax-loader.gif │ │ ├── ajax-loader1.gif │ │ ├── avatar.png │ │ ├── avatar04.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar5.png │ │ ├── avatar9.jpg │ │ ├── blur-background04.jpg │ │ ├── blur-background08.jpg │ │ ├── blur-background09.jpg │ │ ├── bootstrap-colorpicker │ │ │ ├── Thumbs.db │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── credit │ │ │ ├── Thumbs.db │ │ │ ├── american-express.png │ │ │ ├── cirrus.png │ │ │ ├── mastercard.png │ │ │ ├── mestro.png │ │ │ ├── paypal.png │ │ │ ├── paypal2.png │ │ │ └── visa.png │ │ ├── icons.png │ │ ├── sprite-skin-flat.png │ │ ├── sprite-skin-nice.png │ │ ├── user-bg.png │ │ ├── user.jpg │ │ └── user2.jpg │ ├── jAlert │ │ ├── images │ │ │ ├── error-icon.png │ │ │ ├── help.gif │ │ │ ├── important.gif │ │ │ ├── info.gif │ │ │ ├── message-icon.png │ │ │ ├── title.gif │ │ │ └── warning-icon.png │ │ ├── jquery.alerts.css │ │ └── jquery.alerts.js │ ├── js │ │ ├── AdminLTE │ │ │ ├── app.js │ │ │ ├── dashboard.js │ │ │ └── demo.js │ │ ├── bootstrap.min.js │ │ ├── horariosmedico.js │ │ ├── jquery-3.1.0.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.min.js │ │ ├── jquery.ui.draggable.js │ │ ├── logout.js │ │ ├── menus.js │ │ ├── paciente.js │ │ ├── plugins │ │ │ ├── bootstrap-slider │ │ │ │ └── bootstrap-slider.js │ │ │ ├── bootstrap-wysihtml5 │ │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ │ └── bootstrap3-wysihtml5.js │ │ │ ├── colorpicker │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ └── bootstrap-colorpicker.min.js │ │ │ ├── datatables │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ └── jquery.dataTables.js │ │ │ ├── datepicker │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ │ ├── daterangepicker │ │ │ │ ├── calendario.js │ │ │ │ └── daterangepicker.js │ │ │ ├── flot │ │ │ │ ├── excanvas.js │ │ │ │ ├── excanvas.min.js │ │ │ │ ├── jquery.colorhelpers.js │ │ │ │ ├── jquery.colorhelpers.min.js │ │ │ │ ├── jquery.flot.canvas.js │ │ │ │ ├── jquery.flot.canvas.min.js │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ ├── jquery.flot.categories.min.js │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ │ ├── jquery.flot.image.js │ │ │ │ ├── jquery.flot.image.min.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.min.js │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ ├── jquery.flot.navigate.min.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.pie.min.js │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ ├── jquery.flot.resize.min.js │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ ├── jquery.flot.selection.min.js │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ ├── jquery.flot.stack.min.js │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ ├── jquery.flot.symbol.min.js │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ ├── jquery.flot.threshold.min.js │ │ │ │ ├── jquery.flot.time.js │ │ │ │ └── jquery.flot.time.min.js │ │ │ ├── iCheck │ │ │ │ ├── icheck.js │ │ │ │ └── icheck.min.js │ │ │ ├── input-mask │ │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ │ ├── jquery.inputmask.extensions.js │ │ │ │ ├── jquery.inputmask.js │ │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ │ └── phone-codes │ │ │ │ │ ├── phone-be.json │ │ │ │ │ ├── phone-codes.json │ │ │ │ │ └── readme.txt │ │ │ ├── ionslider │ │ │ │ └── ion.rangeSlider.min.js │ │ │ ├── jqueryKnob │ │ │ │ └── jquery.knob.js │ │ │ ├── jvectormap │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ ├── misc │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery.ba-resize.min.js │ │ │ │ ├── jquery.placeholder.js │ │ │ │ ├── modernizr.min.js │ │ │ │ └── respond.min.js │ │ │ ├── moment │ │ │ │ └── moment.min.js │ │ │ ├── morris │ │ │ │ ├── morris.js │ │ │ │ └── morris.min.js │ │ │ ├── slimScroll │ │ │ │ ├── jquery.slimscroll.js │ │ │ │ ├── jquery.slimscroll.min.js │ │ │ │ └── slimScroll.jquery.json │ │ │ ├── sparkline │ │ │ │ ├── jquery.sparkline.js │ │ │ │ └── jquery.sparkline.min.js │ │ │ └── timepicker │ │ │ │ ├── bootstrap-timepicker.js │ │ │ │ └── bootstrap-timepicker.min.js │ │ └── reserva.js │ └── packages.config │ ├── SistemaWebClinica.sln │ ├── SistemaWebClinica.suo │ └── SistemaWebClinica.v12.suo └── README.md /BaseDeDatos/DBClinica_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/BaseDeDatos/DBClinica_test.sql -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/Conexion.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Data.SqlClient; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using System.Configuration; 8 | 9 | namespace CapaAccesoDatos 10 | { 11 | public class Conexion 12 | { 13 | #region "PATRON SINGLETON" 14 | private static Conexion conexion = null; 15 | private Conexion() { } 16 | public static Conexion getInstance() 17 | { 18 | if (conexion == null) 19 | { 20 | conexion = new Conexion(); 21 | } 22 | return conexion; 23 | } 24 | #endregion 25 | 26 | public SqlConnection ConexionBD() 27 | { 28 | SqlConnection conexion = new SqlConnection(); 29 | //conexion.ConnectionString = "Data Source=0.0.0.0; Initial Catalog=test; User ID=ss; Password=qRr8/1qNn__aaaaw|"; 30 | conexion.ConnectionString = GetConnectionString(); 31 | return conexion; 32 | } 33 | 34 | public String GetConnectionString() 35 | { 36 | return ConfigurationManager.ConnectionStrings["local_clinica"].ConnectionString; 37 | } 38 | 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // La información general sobre un ensamblado se controla mediante el siguiente 6 | // conjunto de atributos. Cambie estos atributos para modificar la información 7 | // asociada con un ensamblado. 8 | [assembly: AssemblyTitle("CapaAccesoDatos")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Hewlett-Packard")] 12 | [assembly: AssemblyProduct("CapaAccesoDatos")] 13 | [assembly: AssemblyCopyright("Copyright © Hewlett-Packard 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Si establece ComVisible como false, los tipos de este ensamblado no estarán visibles 18 | // para los componentes COM. Si necesita obtener acceso a un tipo de este ensamblado desde 19 | // COM, establezca el atributo ComVisible como true en este tipo. 20 | [assembly: ComVisible(false)] 21 | 22 | // El siguiente GUID sirve como identificador de typelib si este proyecto se expone a COM 23 | [assembly: Guid("8331caa2-078c-49f0-af06-177eff4a6ca7")] 24 | 25 | // La información de versión de un ensamblado consta de los cuatro valores siguientes: 26 | // 27 | // Versión principal 28 | // Versión secundaria 29 | // Número de compilación 30 | // Revisión 31 | // 32 | // Puede especificar todos los valores o establecer como predeterminados los números de compilación y de revisión 33 | // mediante el carácter '*', como se muestra a continuación: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/bin/Debug/CapaAccesoDatos.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaAccesoDatos/bin/Debug/CapaAccesoDatos.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/bin/Debug/CapaAccesoDatos.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaAccesoDatos/bin/Debug/CapaAccesoDatos.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/bin/Debug/CapaEntidades.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaAccesoDatos/bin/Debug/CapaEntidades.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/bin/Debug/CapaEntidades.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaAccesoDatos/bin/Debug/CapaEntidades.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/CapaAccesoDatos.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaAccesoDatos\bin\Debug\CapaAccesoDatos.dll 2 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaAccesoDatos\bin\Debug\CapaAccesoDatos.pdb 3 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaAccesoDatos\bin\Debug\CapaEntidades.dll 4 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaAccesoDatos\bin\Debug\CapaEntidades.pdb 5 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaAccesoDatos\obj\Debug\CapaAccesoDatos.csprojResolveAssemblyReference.cache 6 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaAccesoDatos\obj\Debug\CapaAccesoDatos.dll 7 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaAccesoDatos\obj\Debug\CapaAccesoDatos.pdb 8 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/CapaAccesoDatos.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/CapaAccesoDatos.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/CapaAccesoDatos.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/CapaAccesoDatos.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/CapaAccesoDatos.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/CapaAccesoDatos.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaAccesoDatos/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/Cita.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class Cita 10 | { 11 | public int IdCita { get; set; } 12 | public Medico Medico { get; set; } 13 | public Paciente Paciente { get; set; } 14 | public DateTime FechaReserva { get; set; } 15 | public string Observacion { get; set; } 16 | public char Estado { get; set; } 17 | public string Hora { get; set; } 18 | //public Hora EHora { get; set; } 19 | 20 | public Cita() : this(0,new Medico(), new Paciente(), DateTime.Now, "", ' ', "") 21 | { 22 | } 23 | 24 | public Cita(int _IdCita, Medico _Medico, Paciente _Paciente, DateTime _FechaReserva, string _Observacion 25 | , char _Estado, string _Hora) 26 | { 27 | this.IdCita = _IdCita; 28 | this.Medico = _Medico; 29 | this.Paciente = _Paciente; 30 | this.FechaReserva = _FechaReserva; 31 | this.Observacion = _Observacion; 32 | this.Estado = _Estado; 33 | this.Hora = _Hora; 34 | } 35 | 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/Diagnostico.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class Diagnostico 10 | { 11 | public int IdDiagnostico { get; set; } 12 | public HistoriaClinica HistoriaClinica { get; set; } 13 | public DateTime FechaEmision { get; set; } 14 | public String Observacion { get; set; } 15 | public String SDiagnostico { get; set; } 16 | public bool Estado { get; set; } 17 | 18 | 19 | public Diagnostico() 20 | { 21 | this.HistoriaClinica = new HistoriaClinica(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/Empleado.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class Empleado 10 | { 11 | public int ID { get; set; } 12 | public TipoEmpleado RTipoEmpleado { get; set; } 13 | public String Nombre { get; set; } 14 | public String ApPaterno { get; set; } 15 | public String ApMaterno { get; set; } 16 | public String NroDocumento { get; set; } 17 | public bool Estado { get; set; } 18 | public String Imagen { get; set; } 19 | public String Usuario { get; set; } 20 | public String Clave { get; set; } 21 | 22 | public Empleado() : this(0, new TipoEmpleado(), "", "", "", "", false, "", "", "") { } 23 | 24 | public Empleado(int ID, TipoEmpleado RTipoEmpleado, String Nombre, String ApPaterno, String ApMaterno, String NroDocumento, bool Estado, String Imagen, String Usuario, String Clave) 25 | { 26 | this.ID = ID; 27 | this.RTipoEmpleado = RTipoEmpleado; 28 | this.Nombre = Nombre; 29 | this.ApPaterno = ApPaterno; 30 | this.ApMaterno = ApMaterno; 31 | this.NroDocumento = NroDocumento; 32 | this.Estado = Estado; 33 | this.Imagen = Imagen; 34 | this.Usuario = Usuario; 35 | this.Clave = Clave; 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/Especialidad.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class Especialidad 10 | { 11 | public int IdEspecialidad { get; set; } 12 | public String Descripcion { get; set; } 13 | public bool Estado { get; set; } 14 | 15 | public Especialidad() 16 | { 17 | 18 | } 19 | 20 | public Especialidad(int IdEspecialidad, String Descripcion, bool Estado) 21 | { 22 | this.IdEspecialidad = IdEspecialidad; 23 | this.Descripcion = Descripcion; 24 | this.Estado = Estado; 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/HistoriaClinica.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class HistoriaClinica 10 | { 11 | public int IdHistoriaClinica { get; set; } 12 | public Int32 IDPaciente { get; set; } 13 | public List LDiagnostico { get; set; } 14 | public DateTime FechaApertura { get; set; } 15 | public bool Estado { get; set; } 16 | 17 | 18 | public HistoriaClinica() 19 | : this(0, 0, new List(), DateTime.Now, false) 20 | { 21 | 22 | } 23 | 24 | public HistoriaClinica(int _IdHistoriaClinica, Int32 _IdPaciente, List _ListaDiagnostico, DateTime _FechaApertura, bool _Estado) 25 | { 26 | this.IdHistoriaClinica = _IdHistoriaClinica; 27 | this.IDPaciente = _IdPaciente; 28 | this.LDiagnostico = _ListaDiagnostico; 29 | this.FechaApertura = _FechaApertura; 30 | this.Estado = _Estado; 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/Hora.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class Hora 10 | { 11 | public int IdHora { get; set; } 12 | public String hora { get; set; } 13 | 14 | public Hora() { } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/HorarioAtencion.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class HorarioAtencion 10 | { 11 | public int IdHorarioAtencion { get; set; } 12 | public Medico Medico { get; set; } 13 | public Hora Hora { get; set; } 14 | public DateTime Fecha { get; set; } 15 | public bool Estado { get; set; } 16 | 17 | public HorarioAtencion() 18 | { 19 | 20 | } 21 | 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/Medico.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class Medico : Empleado 10 | { 11 | public int IdMedico { get; set; } 12 | public Especialidad Especialidad { get; set; } 13 | public bool Estado { get; set; } 14 | 15 | 16 | public Medico() 17 | : base() 18 | { 19 | 20 | } 21 | 22 | public Medico(int IdMedico, Especialidad Especialidad, bool Estado) 23 | : base(0, new TipoEmpleado(), "", "", "", "", true, "", "", "") 24 | { 25 | this.IdMedico = IdMedico; 26 | this.Especialidad = Especialidad; 27 | this.Estado = Estado; 28 | } 29 | 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/Menu.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class Menu 10 | { 11 | public int IdMenu { get; set; } 12 | public String Nombre { get; set; } 13 | public bool IsSubMenu { get; set; } 14 | public String Url { get; set; } 15 | public int IdMenuParent { get; set; } 16 | public List SubMenu { get; set; } 17 | public bool Estado { get; set; } 18 | public bool Show { get; set; } 19 | 20 | public Menu(int _IdMenu, String _Nombre, bool _IsSubMenu, String _Url, int _IdMenuParent, List _SubMenu, bool _Estado, bool _Show) 21 | { 22 | this.IdMenu = _IdMenu; 23 | this.Nombre = _Nombre; 24 | this.IsSubMenu = _IsSubMenu; 25 | this.Url = _Url; 26 | this.IdMenuParent = _IdMenuParent; 27 | this.SubMenu = _SubMenu; 28 | this.Estado = _Estado; 29 | this.Show = _Show; 30 | } 31 | 32 | public Menu() : this(0, "", false, "", 0, new List(), false, false) { } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/Paciente.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class Paciente 10 | { 11 | public int IdPaciente { get; set; } 12 | public String Nombres { get; set; } 13 | public String ApPaterno { get; set; } 14 | public String ApMaterno { get; set; } 15 | public int Edad { get; set; } 16 | public char Sexo { get; set; } 17 | public String NroDocumento { get; set; } 18 | public String Direccion { get; set; } 19 | public String Telefono { get; set; } 20 | public bool Estado { get; set; } 21 | public String Imagen { get; set; } 22 | public HistoriaClinica PHistoriaClinica { get; set; } 23 | 24 | 25 | public Paciente() : this(0,"", "", "", 0, ' ', "", "", "", false, "", new HistoriaClinica()) { } 26 | 27 | 28 | public Paciente(int _IdPaciente, String _Nombres, String _ApPaterno, String _ApMaterno, int _Edad, char _Sexo 29 | , String _NroDocumento, String _Direccion, String _Telefono, bool _Estado, String _Imagen, HistoriaClinica _PHistoriaClinica) 30 | { 31 | 32 | this.IdPaciente = _IdPaciente; 33 | this.Nombres = _Nombres; 34 | this.ApPaterno = _ApPaterno; 35 | this.ApMaterno = _ApMaterno; 36 | this.Edad = _Edad; 37 | this.Sexo = _Sexo; 38 | this.NroDocumento = _NroDocumento; 39 | this.Direccion = _Direccion; 40 | this.Imagen = _Imagen; 41 | this.PHistoriaClinica = _PHistoriaClinica; 42 | } 43 | 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/Permiso.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class Permiso 10 | { 11 | public Empleado PEmpleado { get; set; } 12 | public List PMenu { get; set; } 13 | public bool Estado { get; set; } 14 | 15 | public Permiso(Empleado Empleado, List LMenu, bool Estado) 16 | { 17 | this.PEmpleado = Empleado; 18 | this.PMenu = LMenu; 19 | this.Estado = Estado; 20 | } 21 | 22 | public Permiso() : this(new Empleado(), new List(), false) { } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // La información general sobre un ensamblado se controla mediante el siguiente 6 | // conjunto de atributos. Cambie estos atributos para modificar la información 7 | // asociada con un ensamblado. 8 | [assembly: AssemblyTitle("CapaEntidades")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Hewlett-Packard")] 12 | [assembly: AssemblyProduct("CapaEntidades")] 13 | [assembly: AssemblyCopyright("Copyright © Hewlett-Packard 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Si establece ComVisible como false, los tipos de este ensamblado no estarán visibles 18 | // para los componentes COM. Si necesita obtener acceso a un tipo de este ensamblado desde 19 | // COM, establezca el atributo ComVisible como true en este tipo. 20 | [assembly: ComVisible(false)] 21 | 22 | // El siguiente GUID sirve como identificador de typelib si este proyecto se expone a COM 23 | [assembly: Guid("3410b268-d4f8-44d8-8e58-86164b24fa10")] 24 | 25 | // La información de versión de un ensamblado consta de los cuatro valores siguientes: 26 | // 27 | // Versión principal 28 | // Versión secundaria 29 | // Número de compilación 30 | // Revisión 31 | // 32 | // Puede especificar todos los valores o establecer como predeterminados los números de compilación y de revisión 33 | // mediante el carácter '*', como se muestra a continuación: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/TipoEmpleado.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CapaEntidades 8 | { 9 | public class TipoEmpleado 10 | { 11 | public int ID { get; set; } 12 | public String Descripcion { get; set; } 13 | public bool Estado { get; set; } 14 | 15 | public TipoEmpleado() 16 | { 17 | } 18 | 19 | public TipoEmpleado(int ID, String Descripcion, bool Estado) 20 | { 21 | this.ID = ID; 22 | this.Descripcion = Descripcion; 23 | this.Estado = Estado; 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/bin/Debug/CapaEntidades.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaEntidades/bin/Debug/CapaEntidades.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/bin/Debug/CapaEntidades.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaEntidades/bin/Debug/CapaEntidades.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/CapaEntidades.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaEntidades\bin\Debug\CapaEntidades.dll 2 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaEntidades\bin\Debug\CapaEntidades.pdb 3 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaEntidades\obj\Debug\CapaEntidades.dll 4 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaEntidades\obj\Debug\CapaEntidades.pdb 5 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/CapaEntidades.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/CapaEntidades.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/CapaEntidades.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/CapaEntidades.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaEntidades/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/CitaLN.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using CapaEntidades; 7 | using CapaAccesoDatos; 8 | 9 | namespace CapaLogicaNegocio 10 | { 11 | public class CitaLN 12 | { 13 | #region "PATRON SINGLETON" 14 | private static CitaLN citaLN = null; 15 | private CitaLN() { } 16 | public static CitaLN getInstance() 17 | { 18 | if (citaLN == null) 19 | { 20 | citaLN = new CitaLN(); 21 | } 22 | return citaLN; 23 | } 24 | #endregion 25 | 26 | public bool RegistrarCita(Cita objCita) 27 | { 28 | try 29 | { 30 | return CitaDAO.getInstance().RegistrarCita(objCita); 31 | } 32 | catch (Exception) 33 | { 34 | throw; 35 | } 36 | } 37 | 38 | public List ListarCitas() 39 | { 40 | try 41 | { 42 | return CitaDAO.getInstance().ListarCitas(); 43 | } 44 | catch (Exception) 45 | { 46 | throw; 47 | } 48 | } 49 | 50 | public bool ActualizarCita(Int32 idCita, string estado) 51 | { 52 | try 53 | { 54 | return CitaDAO.getInstance().ActualizarCita(idCita, estado); 55 | } 56 | catch (Exception e) 57 | { 58 | throw e; 59 | } 60 | } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/DiagnosticoLN.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using CapaAccesoDatos; 7 | using CapaEntidades; 8 | 9 | namespace CapaLogicaNegocio 10 | { 11 | public class DiagnosticoLN 12 | { 13 | #region "PATRON SINGLETON" 14 | private static DiagnosticoLN objDiagnostico = null; 15 | private DiagnosticoLN() { } 16 | public static DiagnosticoLN getInstance() 17 | { 18 | if (objDiagnostico == null) 19 | { 20 | objDiagnostico = new DiagnosticoLN(); 21 | } 22 | return objDiagnostico; 23 | } 24 | #endregion 25 | 26 | public bool RegistrarDiagnostico(Diagnostico objDiagnostico) 27 | { 28 | try 29 | { 30 | return DiagnosticoDAO.getInstance().RegistrarDiagnostico(objDiagnostico); 31 | } 32 | catch (Exception) 33 | { 34 | throw; 35 | } 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/EmpleadoLN.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using CapaEntidades; 7 | using CapaAccesoDatos; 8 | 9 | namespace CapaLogicaNegocio 10 | { 11 | public class EmpleadoLN 12 | { 13 | #region "PATRON SINGLETON" 14 | private static EmpleadoLN objEmpleado = null; 15 | private EmpleadoLN() { } 16 | public static EmpleadoLN getInstance() 17 | { 18 | if (objEmpleado == null) 19 | { 20 | objEmpleado = new EmpleadoLN(); 21 | } 22 | return objEmpleado; 23 | } 24 | #endregion 25 | 26 | public Empleado AccesoSistema(String user, String pass) 27 | { 28 | try 29 | { 30 | return EmpleadoDAO.getInstance().AccesoSistema(user, pass); 31 | } 32 | catch (Exception ex) 33 | { 34 | throw ex; 35 | } 36 | } 37 | 38 | public Empleado BuscarEmpleado(String nroDocumento) 39 | { 40 | try 41 | { 42 | return EmpleadoDAO.getInstance().BuscarEmpleado(nroDocumento); 43 | } 44 | catch (Exception e) 45 | { 46 | throw e; 47 | } 48 | } 49 | 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/EspecialidadLN.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using CapaAccesoDatos; 7 | using CapaEntidades; 8 | 9 | namespace CapaLogicaNegocio 10 | { 11 | public class EspecialidadLN 12 | { 13 | #region "PATRON SINGLETON" 14 | private static EspecialidadLN objEspecialidad = null; 15 | private EspecialidadLN() { } 16 | public static EspecialidadLN getInstance() 17 | { 18 | if (objEspecialidad == null) 19 | { 20 | objEspecialidad = new EspecialidadLN(); 21 | } 22 | return objEspecialidad; 23 | } 24 | #endregion 25 | 26 | public List Listar() 27 | { 28 | try 29 | { 30 | return EspecialidadDAO.getInstance().Listar(); 31 | } 32 | catch (Exception ex) 33 | { 34 | throw ex; 35 | } 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/MedicoLN.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using CapaAccesoDatos; 7 | using CapaEntidades; 8 | 9 | 10 | namespace CapaLogicaNegocio 11 | { 12 | public class MedicoLN 13 | { 14 | #region "PATRON SINGLETON" 15 | private static MedicoLN objMedico = null; 16 | private MedicoLN() { } 17 | public static MedicoLN getInstance() 18 | { 19 | if (objMedico == null) 20 | { 21 | objMedico = new MedicoLN(); 22 | } 23 | return objMedico; 24 | } 25 | #endregion 26 | 27 | public Medico BuscarMedico(String dni) 28 | { 29 | try 30 | { 31 | return MedicoDAO.getInstance().BuscarMedico(dni); 32 | } 33 | catch (Exception ex) 34 | { 35 | throw ex; 36 | } 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/PermisoLN.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using CapaEntidades; 7 | using CapaAccesoDatos; 8 | 9 | namespace CapaLogicaNegocio 10 | { 11 | public class PermisoLN 12 | { 13 | #region "PATRON SINGLETON" 14 | private static PermisoLN objPermiso = null; 15 | private PermisoLN() { } 16 | public static PermisoLN getInstance() 17 | { 18 | if (objPermiso == null) 19 | { 20 | objPermiso = new PermisoLN(); 21 | } 22 | return objPermiso; 23 | } 24 | #endregion 25 | 26 | public bool RegistrarEliminarPermiso(Permiso objPermiso, Int32 opcion) 27 | { 28 | try 29 | { 30 | return PermisoDAO.getInstance().RegistrarEliminarPermiso(objPermiso, opcion); 31 | } 32 | catch (Exception) 33 | { 34 | throw; 35 | } 36 | } 37 | 38 | public List ListarMenuPermisos(Int32 IdEmpleado, Int32 opcion) 39 | { 40 | try 41 | { 42 | return PermisoDAO.getInstance().ListarMenuPermisos(IdEmpleado, opcion); 43 | } 44 | catch (Exception e) 45 | { 46 | throw e; 47 | } 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // La información general sobre un ensamblado se controla mediante el siguiente 6 | // conjunto de atributos. Cambie estos atributos para modificar la información 7 | // asociada con un ensamblado. 8 | [assembly: AssemblyTitle("CapaLogicaNegocio")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Hewlett-Packard")] 12 | [assembly: AssemblyProduct("CapaLogicaNegocio")] 13 | [assembly: AssemblyCopyright("Copyright © Hewlett-Packard 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Si establece ComVisible como false, los tipos de este ensamblado no estarán visibles 18 | // para los componentes COM. Si necesita obtener acceso a un tipo de este ensamblado desde 19 | // COM, establezca el atributo ComVisible como true en este tipo. 20 | [assembly: ComVisible(false)] 21 | 22 | // El siguiente GUID sirve como identificador de typelib si este proyecto se expone a COM 23 | [assembly: Guid("980c7929-a14a-4eab-8d81-64a2b5ba831b")] 24 | 25 | // La información de versión de un ensamblado consta de los cuatro valores siguientes: 26 | // 27 | // Versión principal 28 | // Versión secundaria 29 | // Número de compilación 30 | // Revisión 31 | // 32 | // Puede especificar todos los valores o establecer como predeterminados los números de compilación y de revisión 33 | // mediante el carácter '*', como se muestra a continuación: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/ReporteLN.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using CapaEntidades; 7 | using CapaAccesoDatos; 8 | 9 | namespace CapaLogicaNegocio 10 | { 11 | public class ReporteLN 12 | { 13 | #region "PATRON SINGLETON" 14 | private static ReporteLN reporteLN = null; 15 | private ReporteLN() { } 16 | public static ReporteLN getInstance() 17 | { 18 | if (reporteLN == null) 19 | { 20 | reporteLN = new ReporteLN(); 21 | } 22 | return reporteLN; 23 | } 24 | #endregion 25 | 26 | public List ReporteCitasPorMedico(Int32 IdMedico) 27 | { 28 | try 29 | { 30 | return ReporteDAO.getInstance().ListarCitasPorMedico(IdMedico); 31 | } 32 | catch (Exception) { throw; } 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaAccesoDatos.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaAccesoDatos.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaAccesoDatos.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaAccesoDatos.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaEntidades.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaEntidades.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaEntidades.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaEntidades.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaLogicaNegocio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaLogicaNegocio.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaLogicaNegocio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/bin/Debug/CapaLogicaNegocio.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/CapaLogicaNegocio.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaLogicaNegocio\bin\Debug\CapaLogicaNegocio.dll 2 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaLogicaNegocio\bin\Debug\CapaLogicaNegocio.pdb 3 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaLogicaNegocio\bin\Debug\CapaAccesoDatos.dll 4 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaLogicaNegocio\bin\Debug\CapaEntidades.dll 5 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaLogicaNegocio\bin\Debug\CapaAccesoDatos.pdb 6 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaLogicaNegocio\bin\Debug\CapaEntidades.pdb 7 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaLogicaNegocio\obj\Debug\CapaLogicaNegocio.csprojResolveAssemblyReference.cache 8 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaLogicaNegocio\obj\Debug\CapaLogicaNegocio.dll 9 | C:\Users\JorgePC\Desktop\CapaPresentacion\CapaLogicaNegocio\obj\Debug\CapaLogicaNegocio.pdb 10 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/CapaLogicaNegocio.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/CapaLogicaNegocio.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/CapaLogicaNegocio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/CapaLogicaNegocio.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/CapaLogicaNegocio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/CapaLogicaNegocio.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaLogicaNegocio/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/BadRequest.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BadRequest.aspx.cs" Inherits="CapaPresentacion.BadRequest" MasterPageFile="~/Home.Master" %> 2 | 3 | 4 | 5 | 6 | 7 |
8 |

No tiene permisos para acceder a la ruta. Habilitar los permisos y volver a iniciar sesión.

9 |
10 | 11 |
12 | 13 |
14 | 15 | 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/BadRequest.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | 8 | namespace CapaPresentacion 9 | { 10 | public partial class BadRequest : System.Web.UI.Page 11 | { 12 | protected void Page_Load(object sender, EventArgs e) 13 | { 14 | if (!IsPostBack) { } 15 | } 16 | 17 | protected void btnReturn_Click(object sender, EventArgs e) 18 | { 19 | if (HttpContext.Current.Session["UserSessionEmpleado"] != null) 20 | { 21 | Response.Redirect("PanelGeneral.aspx"); 22 | } 23 | else 24 | { 25 | Response.Redirect("Login.aspx"); 26 | } 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/BadRequest.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Este código fue generado por una herramienta. 4 | // 5 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si 6 | // se vuelve a generar el código. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace CapaPresentacion { 11 | 12 | 13 | public partial class BadRequest { 14 | 15 | /// 16 | /// Control btnReturn. 17 | /// 18 | /// 19 | /// Campo generado automáticamente. 20 | /// Para modificarlo, mueva la declaración del campo del archivo del diseñador al archivo de código subyacente. 21 | /// 22 | protected global::System.Web.UI.WebControls.Button btnReturn; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/CapaPresentacion.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectFiles 5 | 6 | 7 | 8 | 9 | 10 | Login.aspx 11 | SpecificPage 12 | True 13 | False 14 | False 15 | False 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | True 25 | True 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/Custom/SessionManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Web.SessionState; 6 | using CapaEntidades; 7 | 8 | namespace CapaPresentacion.Custom 9 | { 10 | public class SessionManager 11 | { 12 | #region variables 13 | private HttpSessionState _currentSession; 14 | #endregion 15 | 16 | public SessionManager(HttpSessionState session) 17 | { 18 | this._currentSession = session; 19 | } 20 | 21 | #region metodos 22 | private HttpSessionState CurrentSession 23 | { 24 | get { return this._currentSession; } 25 | } 26 | 27 | public string UserSessionId 28 | { 29 | set { CurrentSession["UserSessionId"] = value; } 30 | get { return (string)CurrentSession["UserSessionId"]; } 31 | } 32 | 33 | 34 | public Empleado UserSessionEmpleado 35 | { 36 | set { CurrentSession["UserSessionEmpleado"] = value; } 37 | get { return (Empleado)CurrentSession["UserSessionEmpleado"]; } 38 | } 39 | 40 | #endregion 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/ErrorPage.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Title="" Language="C#" MasterPageFile="~/MasterError.Master" AutoEventWireup="true" CodeBehind="ErrorPage.aspx.cs" Inherits="CapaPresentacion.ErrorPage" %> 2 | 3 | 4 | 5 | 6 |
7 |

La ruta indicada no existe.

8 |
9 | 10 |
11 |
12 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/ErrorPage.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | 8 | namespace CapaPresentacion 9 | { 10 | public partial class ErrorPage : System.Web.UI.Page 11 | { 12 | protected void Page_Load(object sender, EventArgs e) 13 | { 14 | if (!IsPostBack) { } 15 | } 16 | 17 | protected void btnReturnError_Click(object sender, EventArgs e) 18 | { 19 | if (HttpContext.Current.Session["UserSessionEmpleado"] != null) 20 | { 21 | Response.Redirect("PanelGeneral.aspx"); 22 | } 23 | else 24 | { 25 | Response.Redirect("Login.aspx"); 26 | } 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/ErrorPage.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Este código fue generado por una herramienta. 4 | // 5 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si 6 | // se vuelve a generar el código. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace CapaPresentacion { 11 | 12 | 13 | public partial class ErrorPage { 14 | 15 | /// 16 | /// Control btnReturnError. 17 | /// 18 | /// 19 | /// Campo generado automáticamente. 20 | /// Para modificarlo, mueva la declaración del campo del archivo del diseñador al archivo de código subyacente. 21 | /// 22 | protected global::System.Web.UI.WebControls.Button btnReturnError; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/GestionarAtencionPaciente.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Este código fue generado por una herramienta. 4 | // 5 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si 6 | // se vuelve a generar el código. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace CapaPresentacion { 11 | 12 | 13 | public partial class GestionarAtencionPaciente { 14 | 15 | /// 16 | /// Control lblFechaAtencion. 17 | /// 18 | /// 19 | /// Campo generado automáticamente. 20 | /// Para modificarlo, mueva la declaración del campo del archivo del diseñador al archivo de código subyacente. 21 | /// 22 | protected global::System.Web.UI.WebControls.Label lblFechaAtencion; 23 | 24 | /// 25 | /// Control dlAtencionMedica. 26 | /// 27 | /// 28 | /// Campo generado automáticamente. 29 | /// Para modificarlo, mueva la declaración del campo del archivo del diseñador al archivo de código subyacente. 30 | /// 31 | protected global::System.Web.UI.WebControls.DataList dlAtencionMedica; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/Home.Master.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | using CapaEntidades; 8 | using CapaLogicaNegocio; 9 | using System.Web.Services; 10 | 11 | namespace CapaPresentacion 12 | { 13 | public partial class Home : System.Web.UI.MasterPage 14 | { 15 | List ListaPermisos = new List(); 16 | 17 | protected void Page_Load(object sender, EventArgs e) 18 | { 19 | if (!IsPostBack) 20 | { 21 | if (Session["UserSessionEmpleado"] != null) 22 | { 23 | Empleado objEmpeado = (Empleado)Session["UserSessionEmpleado"]; 24 | txtUser.Text = objEmpeado.Nombre; 25 | } 26 | } 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/Login.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | using System.Web.Security; 8 | using CapaEntidades; 9 | using CapaLogicaNegocio; 10 | using CapaPresentacion.Custom; 11 | 12 | namespace CapaPresentacion 13 | { 14 | public partial class Login : System.Web.UI.Page 15 | { 16 | protected void Page_Load(object sender, EventArgs e) 17 | { 18 | if (!Page.IsPostBack) 19 | { 20 | Session["UserSessionId"] = null; 21 | } 22 | } 23 | 24 | protected void LoginUser_Authenticate(object sender, AuthenticateEventArgs e) 25 | { 26 | bool auth = Membership.ValidateUser(LoginUser.UserName, LoginUser.Password); 27 | 28 | if (auth) 29 | { 30 | Empleado objEmpleado = EmpleadoLN.getInstance().AccesoSistema(LoginUser.UserName, LoginUser.Password); 31 | 32 | if (objEmpleado != null) 33 | { 34 | SessionManager _SessionManager = new SessionManager(Session); 35 | //SessionManager.UserSessionId = objEmpleado.ID.ToString(); 36 | _SessionManager.UserSessionEmpleado = objEmpleado; 37 | FormsAuthentication.RedirectFromLoginPage(LoginUser.UserName, false); 38 | } 39 | else 40 | { 41 | Response.Write(""); 42 | } 43 | } 44 | } 45 | } 46 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/Login.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Este código fue generado por una herramienta. 4 | // 5 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si 6 | // se vuelve a generar el código. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace CapaPresentacion { 11 | 12 | 13 | public partial class Login { 14 | 15 | /// 16 | /// Control form1. 17 | /// 18 | /// 19 | /// Campo generado automáticamente. 20 | /// Para modificarlo, mueva la declaración del campo del archivo del diseñador al archivo de código subyacente. 21 | /// 22 | protected global::System.Web.UI.HtmlControls.HtmlForm form1; 23 | 24 | /// 25 | /// Control LoginUser. 26 | /// 27 | /// 28 | /// Campo generado automáticamente. 29 | /// Para modificarlo, mueva la declaración del campo del archivo del diseñador al archivo de código subyacente. 30 | /// 31 | protected global::System.Web.UI.WebControls.Login LoginUser; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/MasterError.Master.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | 8 | namespace CapaPresentacion 9 | { 10 | public partial class MasterError : System.Web.UI.MasterPage 11 | { 12 | protected void Page_Load(object sender, EventArgs e) 13 | { 14 | 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/PanelGeneral.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Title="" Language="C#" MasterPageFile="~/Home.Master" AutoEventWireup="true" CodeBehind="PanelGeneral.aspx.cs" Inherits="CapaPresentacion.PanelGeneral" %> 2 | 3 | 4 | 5 | 6 |

-

7 |
-------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/PanelGeneral.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | using CapaPresentacion.Custom; 8 | using System.Web.Services; 9 | 10 | namespace CapaPresentacion 11 | { 12 | public partial class PanelGeneral : BasePage 13 | { 14 | protected void Page_Load(object sender, EventArgs e) 15 | { 16 | if (!IsPostBack) 17 | { 18 | 19 | } 20 | } 21 | 22 | [WebMethod] 23 | public static bool Logout() 24 | { 25 | HttpContext.Current.Session.Clear(); 26 | HttpContext.Current.Session.Abandon(); 27 | return true; 28 | } 29 | 30 | } 31 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/PanelGeneral.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Este código fue generado por una herramienta. 4 | // 5 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si 6 | // se vuelve a generar el código. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace CapaPresentacion { 11 | 12 | 13 | public partial class PanelGeneral { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // La información general sobre un ensamblado se controla mediante el siguiente 6 | // conjunto de atributos. Cambie los valores de estos atributos para modificar la información 7 | // asociada a un ensamblado. 8 | [assembly: AssemblyTitle("CapaPresentacion")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Hewlett-Packard")] 12 | [assembly: AssemblyProduct("CapaPresentacion")] 13 | [assembly: AssemblyCopyright("Copyright © Hewlett-Packard 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Si ComVisible se establece en false, los componentes COM no verán los 18 | // tipos de este ensamblado. Si necesita obtener acceso a un tipo de este ensamblado desde 19 | // COM, establezca el atributo ComVisible en true en este tipo. 20 | [assembly: ComVisible(false)] 21 | 22 | // El siguiente GUID es para el Id. typelib cuando este proyecto esté expuesto a COM 23 | [assembly: Guid("0721eca8-a904-4b72-97f6-6ee9cb4b744e")] 24 | 25 | // La información de versión de un ensamblado consta de los siguientes cuatro valores: 26 | // 27 | // Versión principal 28 | // Versión secundaria 29 | // Número de compilación 30 | // Revisión 31 | // 32 | // Puede especificar todos los valores o usar los valores predeterminados de número de compilación y de revisión 33 | // mediante el carácter '*', como se muestra a continuación: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/Web.Debug.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 21 | 22 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/Web.Release.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 22 | 23 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaAccesoDatos.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaAccesoDatos.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaAccesoDatos.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaAccesoDatos.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaEntidades.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaEntidades.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaEntidades.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaEntidades.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaLogicaNegocio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaLogicaNegocio.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaLogicaNegocio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaLogicaNegocio.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaPresentacion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaPresentacion.dll -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaPresentacion.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/bin/CapaPresentacion.pdb -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/datatables/images/sort_both.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/all.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin skins 2 | ----------------------------------- */ 3 | @import url("minimal/_all.css"); 4 | /* 5 | @import url("minimal/minimal.css"); 6 | @import url("minimal/red.css"); 7 | @import url("minimal/green.css"); 8 | @import url("minimal/blue.css"); 9 | @import url("minimal/aero.css"); 10 | @import url("minimal/grey.css"); 11 | @import url("minimal/orange.css"); 12 | @import url("minimal/yellow.css"); 13 | @import url("minimal/pink.css"); 14 | @import url("minimal/purple.css"); 15 | */ 16 | 17 | @import url("square/_all.css"); 18 | /* 19 | @import url("square/square.css"); 20 | @import url("square/red.css"); 21 | @import url("square/green.css"); 22 | @import url("square/blue.css"); 23 | @import url("square/aero.css"); 24 | @import url("square/grey.css"); 25 | @import url("square/orange.css"); 26 | @import url("square/yellow.css"); 27 | @import url("square/pink.css"); 28 | @import url("square/purple.css"); 29 | */ 30 | 31 | @import url("flat/_all.css"); 32 | /* 33 | @import url("flat/flat.css"); 34 | @import url("flat/red.css"); 35 | @import url("flat/green.css"); 36 | @import url("flat/blue.css"); 37 | @import url("flat/aero.css"); 38 | @import url("flat/grey.css"); 39 | @import url("flat/orange.css"); 40 | @import url("flat/yellow.css"); 41 | @import url("flat/pink.css"); 42 | @import url("flat/purple.css"); 43 | */ 44 | 45 | @import url("line/_all.css"); 46 | /* 47 | @import url("line/line.css"); 48 | @import url("line/red.css"); 49 | @import url("line/green.css"); 50 | @import url("line/blue.css"); 51 | @import url("line/aero.css"); 52 | @import url("line/grey.css"); 53 | @import url("line/orange.css"); 54 | @import url("line/yellow.css"); 55 | @import url("line/pink.css"); 56 | @import url("line/purple.css"); 57 | */ 58 | 59 | @import url("polaris/polaris.css"); 60 | 61 | @import url("futurico/futurico.css"); -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/aero.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, aero 2 | ----------------------------------- */ 3 | .icheckbox_flat-aero, 4 | .iradio_flat-aero { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(aero.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-aero { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-aero.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-aero.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-aero.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-aero { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-aero.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-aero.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-aero.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-aero, 51 | .iradio_flat-aero { 52 | background-image: url(aero@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/aero.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/blue.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, blue 2 | ----------------------------------- */ 3 | .icheckbox_flat-blue, 4 | .iradio_flat-blue { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(blue.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-blue { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-blue.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-blue.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-blue.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-blue { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-blue.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-blue.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-blue.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-blue, 51 | .iradio_flat-blue { 52 | background-image: url(blue@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/blue.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/flat.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin flat skin, black 2 | ----------------------------------- */ 3 | .icheckbox_flat, 4 | .iradio_flat { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(flat.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat, 51 | .iradio_flat { 52 | background-image: url(flat@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/flat.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/green.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, green 2 | ----------------------------------- */ 3 | .icheckbox_flat-green, 4 | .iradio_flat-green { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(green.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-green { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-green.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-green.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-green.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-green { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-green.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-green.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-green.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-green, 51 | .iradio_flat-green { 52 | background-image: url(green@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/green.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/grey.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, grey 2 | ----------------------------------- */ 3 | .icheckbox_flat-grey, 4 | .iradio_flat-grey { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(grey.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-grey { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-grey.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-grey.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-grey.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-grey { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-grey.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-grey.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-grey.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-grey, 51 | .iradio_flat-grey { 52 | background-image: url(grey@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/grey.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/orange.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, orange 2 | ----------------------------------- */ 3 | .icheckbox_flat-orange, 4 | .iradio_flat-orange { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(orange.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-orange { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-orange.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-orange.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-orange.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-orange { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-orange.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-orange.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-orange.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-orange, 51 | .iradio_flat-orange { 52 | background-image: url(orange@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/orange.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/pink.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, pink 2 | ----------------------------------- */ 3 | .icheckbox_flat-pink, 4 | .iradio_flat-pink { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(pink.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-pink { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-pink.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-pink.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-pink.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-pink { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-pink.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-pink.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-pink.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-pink, 51 | .iradio_flat-pink { 52 | background-image: url(pink@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/pink.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/purple.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, purple 2 | ----------------------------------- */ 3 | .icheckbox_flat-purple, 4 | .iradio_flat-purple { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(purple.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-purple { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-purple.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-purple.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-purple.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-purple { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-purple.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-purple.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-purple.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-purple, 51 | .iradio_flat-purple { 52 | background-image: url(purple@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/purple.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/red.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, red 2 | ----------------------------------- */ 3 | .icheckbox_flat-red, 4 | .iradio_flat-red { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(red.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-red { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-red.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-red.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-red.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-red { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-red.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-red.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-red.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-red, 51 | .iradio_flat-red { 52 | background-image: url(red@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/red.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/yellow.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, yellow 2 | ----------------------------------- */ 3 | .icheckbox_flat-yellow, 4 | .iradio_flat-yellow { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(yellow.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-yellow { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-yellow.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-yellow.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-yellow.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-yellow { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-yellow.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-yellow.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-yellow.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-yellow, 51 | .iradio_flat-yellow { 52 | background-image: url(yellow@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/futurico/futurico.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Futurico skin 2 | ----------------------------------- */ 3 | .icheckbox_futurico, 4 | .iradio_futurico { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 16px; 11 | height: 17px; 12 | background: url(futurico.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_futurico { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_futurico.checked { 21 | background-position: -18px 0; 22 | } 23 | .icheckbox_futurico.disabled { 24 | background-position: -36px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_futurico.checked.disabled { 28 | background-position: -54px 0; 29 | } 30 | 31 | .iradio_futurico { 32 | background-position: -72px 0; 33 | } 34 | .iradio_futurico.checked { 35 | background-position: -90px 0; 36 | } 37 | .iradio_futurico.disabled { 38 | background-position: -108px 0; 39 | cursor: default; 40 | } 41 | .iradio_futurico.checked.disabled { 42 | background-position: -126px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_futurico, 51 | .iradio_futurico { 52 | background-image: url(futurico@2x.png); 53 | -webkit-background-size: 144px 19px; 54 | background-size: 144px 19px; 55 | } 56 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/line/line.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/aero.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, aero 2 | ----------------------------------- */ 3 | .icheckbox_minimal-aero, 4 | .iradio_minimal-aero { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(aero.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal-aero { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal-aero.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal-aero.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal-aero.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal-aero.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal-aero { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal-aero.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal-aero.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal-aero.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal-aero.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal-aero, 57 | .iradio_minimal-aero { 58 | background-image: url(aero@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/green.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/minimal.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, black 2 | ----------------------------------- */ 3 | .icheckbox_minimal, 4 | .iradio_minimal { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(minimal.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal, 57 | .iradio_minimal { 58 | background-image: url(minimal@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/red.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, red 2 | ----------------------------------- */ 3 | .icheckbox_minimal-red, 4 | .iradio_minimal-red { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(red.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal-red { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal-red.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal-red.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal-red.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal-red.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal-red { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal-red.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal-red.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal-red.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal-red.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 1.5), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal-red, 57 | .iradio_minimal-red { 58 | background-image: url(red@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/red.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/polaris/polaris.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Polaris skin 2 | ----------------------------------- */ 3 | .icheckbox_polaris, 4 | .iradio_polaris { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 29px; 11 | height: 29px; 12 | background: url(polaris.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_polaris { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_polaris.hover { 21 | background-position: -31px 0; 22 | } 23 | .icheckbox_polaris.checked { 24 | background-position: -62px 0; 25 | } 26 | .icheckbox_polaris.disabled { 27 | background-position: -93px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_polaris.checked.disabled { 31 | background-position: -124px 0; 32 | } 33 | 34 | .iradio_polaris { 35 | background-position: -155px 0; 36 | } 37 | .iradio_polaris.hover { 38 | background-position: -186px 0; 39 | } 40 | .iradio_polaris.checked { 41 | background-position: -217px 0; 42 | } 43 | .iradio_polaris.disabled { 44 | background-position: -248px 0; 45 | cursor: default; 46 | } 47 | .iradio_polaris.checked.disabled { 48 | background-position: -279px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_polaris, 57 | .iradio_polaris { 58 | background-image: url(polaris@2x.png); 59 | -webkit-background-size: 310px 31px; 60 | background-size: 310px 31px; 61 | } 62 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/aero.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, aero 2 | ----------------------------------- */ 3 | .icheckbox_square-aero, 4 | .iradio_square-aero { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(aero.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-aero { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-aero.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-aero.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-aero.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-aero.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-aero { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-aero.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-aero.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-aero.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-aero.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-aero, 57 | .iradio_square-aero { 58 | background-image: url(aero@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/aero.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/blue.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, blue 2 | ----------------------------------- */ 3 | .icheckbox_square-blue, 4 | .iradio_square-blue { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(blue.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-blue { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-blue.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-blue.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-blue.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-blue.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-blue { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-blue.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-blue.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-blue.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-blue.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-blue, 57 | .iradio_square-blue { 58 | background-image: url(blue@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/blue.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/green.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/grey.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, grey 2 | ----------------------------------- */ 3 | .icheckbox_square-grey, 4 | .iradio_square-grey { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(grey.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-grey { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-grey.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-grey.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-grey.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-grey.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-grey { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-grey.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-grey.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-grey.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-grey.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-grey, 57 | .iradio_square-grey { 58 | background-image: url(grey@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/grey.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/orange.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/pink.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, pink 2 | ----------------------------------- */ 3 | .icheckbox_square-pink, 4 | .iradio_square-pink { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(pink.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-pink { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-pink.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-pink.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-pink.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-pink.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-pink { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-pink.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-pink.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-pink.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-pink.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-pink, 57 | .iradio_square-pink { 58 | background-image: url(pink@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/pink.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/purple.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/red.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, red 2 | ----------------------------------- */ 3 | .icheckbox_square-red, 4 | .iradio_square-red { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(red.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-red { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-red.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-red.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-red.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-red.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-red { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-red.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-red.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-red.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-red.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-red, 57 | .iradio_square-red { 58 | background-image: url(red@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/red.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/square.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, black 2 | ----------------------------------- */ 3 | .icheckbox_square, 4 | .iradio_square { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(square.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square, 57 | .iradio_square { 58 | background-image: url(square@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/square.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/yellow.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/animated-overlay.gif -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/css/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/jvectormap/jquery-jvectormap-1.2.2.css: -------------------------------------------------------------------------------- 1 | .jvectormap-label { 2 | position: absolute; 3 | display: none; 4 | border: solid 1px #CDCDCD; 5 | -webkit-border-radius: 3px; 6 | -moz-border-radius: 3px; 7 | border-radius: 3px; 8 | background: #292929; 9 | color: white; 10 | font-size: 10px!important; 11 | padding: 3px; 12 | z-index: 9999; 13 | } 14 | 15 | .jvectormap-zoomin, .jvectormap-zoomout { 16 | position: absolute; 17 | left: 10px; 18 | -webkit-border-radius: 3px; 19 | -moz-border-radius: 3px; 20 | border-radius: 3px; 21 | background: #292929; 22 | padding: 5px; 23 | color: white; 24 | cursor: pointer; 25 | line-height: 10px; 26 | text-align: center; 27 | font-weight: bold; 28 | } 29 | 30 | .jvectormap-zoomin { 31 | top: 10px; 32 | } 33 | 34 | .jvectormap-zoomout { 35 | top: 35px; 36 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/css/morris/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1090;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#f9f9f9;background:rgba(0, 0, 0, 0.8);border:solid 2px rgba(0, 0, 0, 0.9);font-weight: 600;font-size:14px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} 3 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/Thumbs.db -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/ajax-loader.gif -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/ajax-loader1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/ajax-loader1.gif -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar04.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar2.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar3.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar5.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/avatar9.jpg -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/blur-background04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/blur-background04.jpg -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/blur-background08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/blur-background08.jpg -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/blur-background09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/blur-background09.jpg -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/Thumbs.db -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/Thumbs.db -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/american-express.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/cirrus.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/mastercard.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/mestro.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/paypal.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/paypal2.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/credit/visa.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/icons.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/user-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/user-bg.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/user.jpg -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/img/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/img/user2.jpg -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/error-icon.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/help.gif -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/important.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/important.gif -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/info.gif -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/message-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/message-icon.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/title.gif -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/warning-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/images/warning-icon.png -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/jAlert/jquery.alerts.css: -------------------------------------------------------------------------------- 1 | #popup_container { 2 | font-family: Arial, sans-serif; 3 | font-size: 12px; 4 | min-width: 300px; /* Dialog will be no smaller than this */ 5 | max-width: 600px; /* Dialog will wrap after this width */ 6 | background: #FFF; 7 | border: solid 5px #999; 8 | color: #000; 9 | -moz-border-radius: 5px; 10 | -webkit-border-radius: 5px; 11 | border-radius: 5px; 12 | } 13 | 14 | #popup_title { 15 | font-size: 14px; 16 | font-weight: bold; 17 | text-align: center; 18 | line-height: 1.75em; 19 | color: #666; 20 | background: #CCC url(images/title.gif) top repeat-x; 21 | border: solid 1px #FFF; 22 | border-bottom: solid 1px #999; 23 | cursor: default; 24 | padding: 0em; 25 | margin: 0em; 26 | } 27 | 28 | #popup_content { 29 | background: 16px 16px no-repeat url(images/info.gif); 30 | padding: 1em 1.75em; 31 | margin: 0em; 32 | } 33 | 34 | #popup_content.alert { 35 | background-image: url(images/info.gif); 36 | } 37 | 38 | #popup_content.confirm { 39 | background-image: url(images/help.gif); 40 | } 41 | 42 | #popup_content.prompt { 43 | background-image: url(images/help.gif); 44 | } 45 | 46 | #popup_content.message { 47 | background-image: url(images/message-icon.png); 48 | } 49 | 50 | #popup_content.warning { 51 | background-image: url(images/warning-icon.png); 52 | } 53 | 54 | #popup_content.error { 55 | background-image: url(images/error-icon.png); 56 | } 57 | 58 | #popup_message { 59 | padding-left: 48px; 60 | } 61 | 62 | #popup_panel { 63 | text-align: center; 64 | margin: 1em 0em 0em 1em; 65 | } 66 | 67 | #popup_prompt { 68 | margin: .5em 0em; 69 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/logout.js: -------------------------------------------------------------------------------- 1 | $(document).on('click', '#close', function (e) { 2 | e.preventDefault(); 3 | 4 | $.ajax({ 5 | type: "POST", 6 | url: "PanelGeneral.aspx/Logout", 7 | dataType: "json", 8 | contentType: 'application/json; charset=utf-8', 9 | error: function (xhr, ajaxOptions, thrownError) { 10 | console.log(xhr.status + " \n" + xhr.responseText, "\n" + thrownError); 11 | }, 12 | success: function (response) { 13 | if (response.d == true) { 14 | window.location.href = "Login.aspx"; 15 | } 16 | } 17 | }); 18 | }); -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Arabic translation for bootstrap-datepicker 3 | * Mohammed Alshehri 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ar'] = { 7 | days: ["الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد"], 8 | daysShort: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت", "أحد"], 9 | daysMin: ["ح", "ن", "ث", "ع", "خ", "ج", "س", "ح"], 10 | months: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 11 | monthsShort: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 12 | today: "هذا اليوم", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.az.js: -------------------------------------------------------------------------------- 1 | // Azerbaijani 2 | ;(function($){ 3 | $.fn.datepicker.dates['az'] = { 4 | days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə", "Bazar"], 5 | daysShort: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 6 | daysMin: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 7 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], 8 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], 9 | today: "Bu gün", 10 | weekStart: 1 11 | }; 12 | }(jQuery)); 13 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bulgarian translation for bootstrap-datepicker 3 | * Apostol Apostolov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['bg'] = { 7 | days: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота", "Неделя"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб", "Нед"], 9 | daysMin: ["Н", "П", "В", "С", "Ч", "П", "С", "Н"], 10 | months: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Ян", "Фев", "Мар", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "днес" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Catalan translation for bootstrap-datepicker 3 | * J. Garcia 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ca'] = { 7 | days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte", "Diumenge"], 8 | daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis", "Diu"], 9 | daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds", "dg"], 10 | months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"], 12 | today: "Avui" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.cs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Czech translation for bootstrap-datepicker 3 | * Matěj Koubík 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['cs'] = { 8 | days: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota", "Neděle"], 9 | daysShort: ["Ned", "Pon", "Úte", "Stř", "Čtv", "Pát", "Sob", "Ned"], 10 | daysMin: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So", "Ne"], 11 | months: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"], 12 | monthsShort: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "Čnc", "Srp", "Zář", "Říj", "Lis", "Pro"], 13 | today: "Dnes" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welsh translation for bootstrap-datepicker 3 | * S. Morris 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['cy'] = { 7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn", "Sul"], 8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad", "Sul"], 9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa", "Su"], 10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"], 11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"], 12 | today: "Heddiw" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Danish translation for bootstrap-datepicker 3 | * Christian Pedersen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['da'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "I Dag", 13 | clear: "Nulstil" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * German translation for bootstrap-datepicker 3 | * Sam Zurcher 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['de'] = { 7 | days: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag", "Sonntag"], 8 | daysShort: ["Son", "Mon", "Die", "Mit", "Don", "Fre", "Sam", "Son"], 9 | daysMin: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa", "So"], 10 | months: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"], 11 | monthsShort: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"], 12 | today: "Heute", 13 | clear: "Löschen", 14 | weekStart: 1, 15 | format: "dd.mm.yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Greek translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['el'] = { 6 | days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο", "Κυριακή"], 7 | daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ", "Κυρ"], 8 | daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα", "Κυ"], 9 | months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"], 10 | monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"], 11 | today: "Σήμερα" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Spanish translation for bootstrap-datepicker 3 | * Bruno Bonamin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['es'] = { 7 | days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb", "Dom"], 9 | daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa", "Do"], 10 | months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], 11 | monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], 12 | today: "Hoy" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.et.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Estonian translation for bootstrap-datepicker 3 | * Ando Roots 4 | * Fixes by Illimar Tambek < 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['et'] = { 8 | days: ["Pühapäev", "Esmaspäev", "Teisipäev", "Kolmapäev", "Neljapäev", "Reede", "Laupäev", "Pühapäev"], 9 | daysShort: ["Pühap", "Esmasp", "Teisip", "Kolmap", "Neljap", "Reede", "Laup", "Pühap"], 10 | daysMin: ["P", "E", "T", "K", "N", "R", "L", "P"], 11 | months: ["Jaanuar", "Veebruar", "Märts", "Aprill", "Mai", "Juuni", "Juuli", "August", "September", "Oktoober", "November", "Detsember"], 12 | monthsShort: ["Jaan", "Veebr", "Märts", "Apr", "Mai", "Juuni", "Juuli", "Aug", "Sept", "Okt", "Nov", "Dets"], 13 | today: "Täna", 14 | clear: "Tühjenda", 15 | weekStart: 1, 16 | format: "dd.mm.yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Persian translation for bootstrap-datepicker 3 | * Mostafa Rokooie 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fa'] = { 7 | days: ["یک‌شنبه", "دوشنبه", "سه‌شنبه", "چهارشنبه", "پنج‌شنبه", "جمعه", "شنبه", "یک‌شنبه"], 8 | daysShort: ["یک", "دو", "سه", "چهار", "پنج", "جمعه", "شنبه", "یک"], 9 | daysMin: ["ی", "د", "س", "چ", "پ", "ج", "ش", "ی"], 10 | months: ["ژانویه", "فوریه", "مارس", "آوریل", "مه", "ژوئن", "ژوئیه", "اوت", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"], 11 | monthsShort: ["ژان", "فور", "مار", "آور", "مه", "ژون", "ژوی", "اوت", "سپت", "اکت", "نوا", "دسا"], 12 | today: "امروز", 13 | clear: "پاک کن", 14 | weekStart: 1, 15 | format: "yyyy/mm/dd" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Finnish translation for bootstrap-datepicker 3 | * Jaakko Salonen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fi'] = { 7 | days: ["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai", "sunnuntai"], 8 | daysShort: ["sun", "maa", "tii", "kes", "tor", "per", "lau", "sun"], 9 | daysMin: ["su", "ma", "ti", "ke", "to", "pe", "la", "su"], 10 | months: ["tammikuu", "helmikuu", "maaliskuu", "huhtikuu", "toukokuu", "kesäkuu", "heinäkuu", "elokuu", "syyskuu", "lokakuu", "marraskuu", "joulukuu"], 11 | monthsShort: ["tam", "hel", "maa", "huh", "tou", "kes", "hei", "elo", "syy", "lok", "mar", "jou"], 12 | today: "tänään", 13 | weekStart: 1, 14 | format: "d.m.yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * French translation for bootstrap-datepicker 3 | * Nico Mollet 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fr'] = { 7 | days: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi", "Dimanche"], 8 | daysShort: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam", "Dim"], 9 | daysMin: ["D", "L", "Ma", "Me", "J", "V", "S", "D"], 10 | months: ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"], 11 | monthsShort: ["Jan", "Fév", "Mar", "Avr", "Mai", "Jui", "Jul", "Aou", "Sep", "Oct", "Nov", "Déc"], 12 | today: "Aujourd'hui", 13 | clear: "Effacer", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.gl.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | $.fn.datepicker.dates['gl'] = { 3 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado", "Domingo"], 4 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb", "Dom"], 5 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa", "Do"], 6 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"], 7 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"], 8 | today: "Hoxe", 9 | clear: "Limpar" 10 | }; 11 | }(jQuery)); 12 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation for bootstrap-datepicker 3 | * Sagie Maoz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['he'] = { 7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], 8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], 11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], 12 | today: "היום", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Croatian localisation 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['hr'] = { 6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota", "Nedjelja"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub", "Ned"], 8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"], 9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], 10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"], 11 | today: "Danas" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hungarian translation for bootstrap-datepicker 3 | * Sotus László 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['hu'] = { 7 | days: ["Vasárnap", "Hétfő", "Kedd", "Szerda", "Csütörtök", "Péntek", "Szombat", "Vasárnap"], 8 | daysShort: ["Vas", "Hét", "Ked", "Sze", "Csü", "Pén", "Szo", "Vas"], 9 | daysMin: ["Va", "Hé", "Ke", "Sz", "Cs", "Pé", "Sz", "Va"], 10 | months: ["Január", "Február", "Március", "Április", "Május", "Június", "Július", "Augusztus", "Szeptember", "Október", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Már", "Ápr", "Máj", "Jún", "Júl", "Aug", "Sze", "Okt", "Nov", "Dec"], 12 | today: "Ma", 13 | weekStart: 1, 14 | format: "yyyy.mm.dd" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bahasa translation for bootstrap-datepicker 3 | * Azwar Akbar 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['id'] = { 7 | days: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu", "Minggu"], 8 | daysShort: ["Mgu", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Mgu"], 9 | daysMin: ["Mg", "Sn", "Sl", "Ra", "Ka", "Ju", "Sa", "Mg"], 10 | months: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ags", "Sep", "Okt", "Nov", "Des"], 12 | today: "Hari Ini", 13 | clear: "Kosongkan" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.is.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Icelandic translation for bootstrap-datepicker 3 | * Hinrik Örn Sigurðsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['is'] = { 7 | days: ["Sunnudagur", "Mánudagur", "Þriðjudagur", "Miðvikudagur", "Fimmtudagur", "Föstudagur", "Laugardagur", "Sunnudagur"], 8 | daysShort: ["Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau", "Sun"], 9 | daysMin: ["Su", "Má", "Þr", "Mi", "Fi", "Fö", "La", "Su"], 10 | months: ["Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maí", "Jún", "Júl", "Ágú", "Sep", "Okt", "Nóv", "Des"], 12 | today: "Í Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Italian translation for bootstrap-datepicker 3 | * Enrico Rubboli 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['it'] = { 7 | days: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato", "Domenica"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab", "Dom"], 9 | daysMin: ["Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa", "Do"], 10 | months: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], 12 | today: "Oggi", 13 | clear: "Cancella", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datepicker 3 | * Norio Suzuki 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ja'] = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | format: "yyyy/mm/dd" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.ka.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Georgian translation for bootstrap-datepicker 3 | * Levan Melikishvili 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ka'] = { 7 | days: ["კვირა", "ორშაბათი", "სამშაბათი", "ოთხშაბათი", "ხუთშაბათი", "პარასკევი", "შაბათი", "კვირა"], 8 | daysShort: ["კვი", "ორშ", "სამ", "ოთხ", "ხუთ", "პარ", "შაბ", "კვი"], 9 | daysMin: ["კვ", "ორ", "სა", "ოთ", "ხუ", "პა", "შა", "კვ"], 10 | months: ["იანვარი", "თებერვალი", "მარტი", "აპრილი", "მაისი", "ივნისი", "ივლისი", "აგვისტო", "სექტემბერი", "ოქტომები", "ნოემბერი", "დეკემბერი"], 11 | monthsShort: ["იან", "თებ", "მარ", "აპრ", "მაი", "ივნ", "ივლ", "აგვ", "სექ", "ოქტ", "ნოე", "დეკ"], 12 | today: "დღეს", 13 | clear: "გასუფთავება", 14 | weekStart: 1, 15 | format: "dd.mm.yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.kk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Kazakh translation for bootstrap-datepicker 3 | * Yerzhan Tolekov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kk'] = { 7 | days: ["Жексенбі", "Дүйсенбі", "Сейсенбі", "Сәрсенбі", "Бейсенбі", "Жұма", "Сенбі", "Жексенбі"], 8 | daysShort: ["Жек", "Дүй", "Сей", "Сәр", "Бей", "Жұм", "Сен", "Жек"], 9 | daysMin: ["Жк", "Дс", "Сс", "Ср", "Бс", "Жм", "Сн", "Жк"], 10 | months: ["Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым", "Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан"], 11 | monthsShort: ["Қаң", "Ақп", "Нау", "Сәу", "Мамыр", "Мау", "Шлд", "Тмз", "Қыр", "Қзн", "Қар", "Жел"], 12 | today: "Бүгін", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.kr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * Gu Youn 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kr'] = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"] 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.lt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Lithuanian translation for bootstrap-datepicker 3 | * Šarūnas Gliebus 4 | */ 5 | 6 | ;(function($){ 7 | $.fn.datepicker.dates['lt'] = { 8 | days: ["Sekmadienis", "Pirmadienis", "Antradienis", "Trečiadienis", "Ketvirtadienis", "Penktadienis", "Šeštadienis", "Sekmadienis"], 9 | daysShort: ["S", "Pr", "A", "T", "K", "Pn", "Š", "S"], 10 | daysMin: ["Sk", "Pr", "An", "Tr", "Ke", "Pn", "Št", "Sk"], 11 | months: ["Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis", "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis"], 12 | monthsShort: ["Sau", "Vas", "Kov", "Bal", "Geg", "Bir", "Lie", "Rugp", "Rugs", "Spa", "Lap", "Gru"], 13 | today: "Šiandien", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.lv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Latvian translation for bootstrap-datepicker 3 | * Artis Avotins 4 | */ 5 | 6 | ;(function($){ 7 | $.fn.datepicker.dates['lv'] = { 8 | days: ["Svētdiena", "Pirmdiena", "Otrdiena", "Trešdiena", "Ceturtdiena", "Piektdiena", "Sestdiena", "Svētdiena"], 9 | daysShort: ["Sv", "P", "O", "T", "C", "Pk", "S", "Sv"], 10 | daysMin: ["Sv", "Pr", "Ot", "Tr", "Ce", "Pk", "Se", "Sv"], 11 | months: ["Janvāris", "Februāris", "Marts", "Aprīlis", "Maijs", "Jūnijs", "Jūlijs", "Augusts", "Septembris", "Oktobris", "Novembris", "Decembris"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jūn", "Jūl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Šodien", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.mk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Macedonian translation for bootstrap-datepicker 3 | * Marko Aleksic 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['mk'] = { 7 | days: ["Недела", "Понеделник", "Вторник", "Среда", "Четврток", "Петок", "Сабота", "Недела"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сре", "Чет", "Пет", "Саб", "Нед"], 9 | daysMin: ["Не", "По", "Вт", "Ср", "Че", "Пе", "Са", "Не"], 10 | months: ["Јануари", "Февруари", "Март", "Април", "Мај", "Јуни", "Јули", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Јан", "Фев", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "Денес", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation for bootstrap-datepicker 3 | * Ateman Faiz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ms'] = { 7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"], 8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"], 9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"], 10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], 12 | today: "Hari Ini" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.nb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian (bokmål) translation for bootstrap-datepicker 3 | * Fredrik Sundmyhr 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nb'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], 12 | today: "I Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.nl-BE.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Belgium-Dutch translation for bootstrap-datepicker 3 | * Julien Poulin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl-BE'] = { 7 | days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"], 8 | daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 9 | daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 10 | months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Vandaag", 13 | clear: "Leegmaken", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch translation for bootstrap-datepicker 3 | * Reinier Goltstein 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl'] = { 7 | days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"], 8 | daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 9 | daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 10 | months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Vandaag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation for bootstrap-datepicker 3 | **/ 4 | ;(function($){ 5 | $.fn.datepicker.dates['no'] = { 6 | days: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 7 | daysShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 8 | daysMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 9 | months: ['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'], 10 | monthsShort: ['Jan','Feb','Mar','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Des'], 11 | today: 'I dag', 12 | clear: 'Nullstill', 13 | weekStart: 1, 14 | format: 'dd.mm.yyyy' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.pl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Polish translation for bootstrap-datepicker 3 | * Robert 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pl'] = { 7 | days: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota", "Niedziela"], 8 | daysShort: ["Nie", "Pn", "Wt", "Śr", "Czw", "Pt", "So", "Nie"], 9 | daysMin: ["N", "Pn", "Wt", "Śr", "Cz", "Pt", "So", "N"], 10 | months: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"], 11 | monthsShort: ["Sty", "Lu", "Mar", "Kw", "Maj", "Cze", "Lip", "Sie", "Wrz", "Pa", "Lis", "Gru"], 12 | today: "Dzisiaj", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.pt-BR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Brazilian translation for bootstrap-datepicker 3 | * Cauan Cabral 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pt-BR'] = { 7 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], 9 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], 10 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 11 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 12 | today: "Hoje", 13 | clear: "Limpar" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.pt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Portuguese translation for bootstrap-datepicker 3 | * Original code: Cauan Cabral 4 | * Tiago Melo 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['pt'] = { 8 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], 9 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], 10 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], 11 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 12 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 13 | today: "Hoje", 14 | clear: "Limpar" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Romanian translation for bootstrap-datepicker 3 | * Cristian Vasile 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ro'] = { 7 | days: ["Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă", "Duminică"], 8 | daysShort: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm", "Dum"], 9 | daysMin: ["Du", "Lu", "Ma", "Mi", "Jo", "Vi", "Sâ", "Du"], 10 | months: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"], 11 | monthsShort: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Astăzi", 13 | clear: "Șterge", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian latin translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs-latin'] = { 7 | days: ["Nedelja","Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub", "Ned"], 9 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su", "N"], 10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danas" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.rs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian cyrillic translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs'] = { 7 | days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља"], 8 | daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб", "Нед"], 9 | daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су", "Н"], 10 | months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"], 11 | monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"], 12 | today: "Данас" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Russian translation for bootstrap-datepicker 3 | * Victor Taranenko 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ru'] = { 7 | days: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота", "Воскресенье"], 8 | daysShort: ["Вск", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Вск"], 9 | daysMin: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Вс"], 10 | months: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"], 11 | monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 12 | today: "Сегодня", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.sk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovak translation for bootstrap-datepicker 3 | * Marek Lichtner 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates["sk"] = { 8 | days: ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota", "Nedeľa"], 9 | daysShort: ["Ned", "Pon", "Uto", "Str", "Štv", "Pia", "Sob", "Ned"], 10 | daysMin: ["Ne", "Po", "Ut", "St", "Št", "Pia", "So", "Ne"], 11 | months: ["Január", "Február", "Marec", "Apríl", "Máj", "Jún", "Júl", "August", "September", "Október", "November", "December"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Máj", "Jún", "Júl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Dnes" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovene translation for bootstrap-datepicker 3 | * Gregor Rudolf 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sl'] = { 7 | days: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob", "Ned"], 9 | daysMin: ["Ne", "Po", "To", "Sr", "Če", "Pe", "So", "Ne"], 10 | months: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danes" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Albanian translation for bootstrap-datepicker 3 | * Tomor Pupovci 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sq'] = { 7 | days: ["E Diel", "E Hënë", "E martē", "E mërkurë", "E Enjte", "E Premte", "E Shtunë", "E Diel"], 8 | daysShort: ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Shtu", "Die"], 9 | daysMin: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sht", "Di"], 10 | months: ["Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor"], 11 | monthsShort: ["Jan", "Shk", "Mar", "Pri", "Maj", "Qer", "Korr", "Gu", "Sht", "Tet", "Nën", "Dhjet"], 12 | today: "Sot" 13 | }; 14 | }(jQuery)); 15 | 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swedish translation for bootstrap-datepicker 3 | * Patrik Ragnarsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sv'] = { 7 | days: ["Söndag", "Måndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "Lördag", "Söndag"], 8 | daysShort: ["Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör", "Sön"], 9 | daysMin: ["Sö", "Må", "Ti", "On", "To", "Fr", "Lö", "Sö"], 10 | months: ["Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Idag", 13 | format: "yyyy-mm-dd", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.sw.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swahili translation for bootstrap-datepicker 3 | * Edwin Mugendi 4 | * Source: http://scriptsource.org/cms/scripts/page.php?item_id=entry_detail&uid=xnfaqyzcku 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['sw'] = { 8 | days: ["Jumapili", "Jumatatu", "Jumanne", "Jumatano", "Alhamisi", "Ijumaa", "Jumamosi", "Jumapili"], 9 | daysShort: ["J2", "J3", "J4", "J5", "Alh", "Ij", "J1", "J2"], 10 | daysMin: ["2", "3", "4", "5", "A", "I", "1", "2"], 11 | months: ["Januari", "Februari", "Machi", "Aprili", "Mei", "Juni", "Julai", "Agosti", "Septemba", "Oktoba", "Novemba", "Desemba"], 12 | monthsShort: ["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ago", "Sep", "Okt", "Nov", "Des"], 13 | today: "Leo" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Thai translation for bootstrap-datepicker 3 | * Suchau Jiraprapot 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['th'] = { 7 | days: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์", "อาทิตย์"], 8 | daysShort: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 9 | daysMin: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 10 | months: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"], 11 | monthsShort: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."], 12 | today: "วันนี้" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Turkish translation for bootstrap-datepicker 3 | * Serkan Algur 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['tr'] = { 7 | days: ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi", "Pazar"], 8 | daysShort: ["Pz", "Pzt", "Sal", "Çrş", "Prş", "Cu", "Cts", "Pz"], 9 | daysMin: ["Pz", "Pzt", "Sa", "Çr", "Pr", "Cu", "Ct", "Pz"], 10 | months: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"], 11 | monthsShort: ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"], 12 | today: "Bugün", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.ua.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Ukrainian translation for bootstrap-datepicker 3 | * Igor Polynets 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ua'] = { 7 | days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П'ятница", "Субота", "Неділя"], 8 | daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Нед"], 9 | daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Нд"], 10 | months: ["Cічень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"], 11 | monthsShort: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"], 12 | today: "Сьогодні", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Vietnamese translation for bootstrap-datepicker 3 | * An Vo 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['vi'] = { 7 | days: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy", "Chủ nhật"], 8 | daysShort: ["CN", "Thứ 2", "Thứ 3", "Thứ 4", "Thứ 5", "Thứ 6", "Thứ 7", "CN"], 9 | daysMin: ["CN", "T2", "T3", "T4", "T5", "T6", "T7", "CN"], 10 | months: ["Tháng 1", "Tháng 2", "Tháng 3", "Tháng 4", "Tháng 5", "Tháng 6", "Tháng 7", "Tháng 8", "Tháng 9", "Tháng 10", "Tháng 11", "Tháng 12"], 11 | monthsShort: ["Th1", "Th2", "Th3", "Th4", "Th5", "Th6", "Th7", "Th8", "Th9", "Th10", "Th11", "Th12"], 12 | today: "Hôm nay", 13 | clear: "Xóa", 14 | format: "dd/mm/yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Simplified Chinese translation for bootstrap-datepicker 3 | * Yuan Cheung 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['zh-CN'] = { 7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], 9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | today: "今日", 13 | format: "yyyy年mm月dd日", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/datepicker/locales/bootstrap-datepicker.zh-TW.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Traditional Chinese translation for bootstrap-datepicker 3 | * Rung-Sheng Jang 4 | * FrankWu Fix more appropriate use of Traditional Chinese habit 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['zh-TW'] = { 8 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 9 | daysShort: ["週日", "週一", "週二", "週三", "週四", "週五", "週六", "週日"], 10 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 11 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 13 | today: "今天", 14 | format: "yyyy年mm月dd日", 15 | weekStart: 1 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/flot/jquery.flot.symbol.min.js: -------------------------------------------------------------------------------- 1 | (function($){function processRawData(plot,series,datapoints){var handlers={square:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.rect(x-size,y-size,size+size,size+size)},diamond:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI/2);ctx.moveTo(x-size,y);ctx.lineTo(x,y-size);ctx.lineTo(x+size,y);ctx.lineTo(x,y+size);ctx.lineTo(x-size,y)},triangle:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(2*Math.PI/Math.sin(Math.PI/3));var height=size*Math.sin(Math.PI/3);ctx.moveTo(x-size/2,y+height/2);ctx.lineTo(x+size/2,y+height/2);if(!shadow){ctx.lineTo(x,y-height/2);ctx.lineTo(x-size/2,y+height/2)}},cross:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.moveTo(x-size,y-size);ctx.lineTo(x+size,y+size);ctx.moveTo(x-size,y+size);ctx.lineTo(x+size,y-size)}};var s=series.points.symbol;if(handlers[s])series.points.symbol=handlers[s]}function init(plot){plot.hooks.processDatapoints.push(processRawData)}$.plot.plugins.push({init:init,name:"symbols",version:"1.0"})})(jQuery); -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/flot/jquery.flot.threshold.min.js: -------------------------------------------------------------------------------- 1 | (function($){var options={series:{threshold:null}};function init(plot){function thresholdData(plot,s,datapoints,below,color){var ps=datapoints.pointsize,i,x,y,p,prevp,thresholded=$.extend({},s);thresholded.datapoints={points:[],pointsize:ps,format:datapoints.format};thresholded.label=null;thresholded.color=color;thresholded.threshold=null;thresholded.originSeries=s;thresholded.data=[];var origpoints=datapoints.points,addCrossingPoints=s.lines.show;var threspoints=[];var newpoints=[];var m;for(i=0;i0&&origpoints[i-ps]!=null){var interx=x+(below-y)*(x-origpoints[i-ps])/(y-origpoints[i-ps+1]);prevp.push(interx);prevp.push(below);for(m=2;m0){var origIndex=$.inArray(s,plot.getData());plot.getData().splice(origIndex+1,0,thresholded)}}function processThresholds(plot,s,datapoints){if(!s.threshold)return;if(s.threshold instanceof Array){s.threshold.sort(function(a,b){return a.below-b.below});$(s.threshold).each(function(i,th){thresholdData(plot,s,datapoints,th.below,th.color)})}else{thresholdData(plot,s,datapoints,s.threshold.below,s.threshold.color)}}plot.hooks.processDatapoints.push(processThresholds)}$.plot.plugins.push({init:init,options:options,name:"threshold",version:"1.2"})})(jQuery); -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/input-mask/jquery.inputmask.phone.extensions.js: -------------------------------------------------------------------------------- 1 | /* 2 | Input Mask plugin extensions 3 | http://github.com/RobinHerbots/jquery.inputmask 4 | Copyright (c) 2010 - 2014 Robin Herbots 5 | Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) 6 | Version: 0.0.0 7 | 8 | Phone extension. 9 | When using this extension make sure you specify the correct url to get the masks 10 | 11 | $(selector).inputmask("phone", { 12 | url: "Scripts/jquery.inputmask/phone-codes/phone-codes.json", 13 | onKeyValidation: function () { //show some metadata in the console 14 | console.log($(this).inputmask("getmetadata")["name_en"]); 15 | } 16 | }); 17 | 18 | 19 | */ 20 | (function ($) { 21 | $.extend($.inputmask.defaults.aliases, { 22 | 'phone': { 23 | url: "phone-codes/phone-codes.json", 24 | mask: function (opts) { 25 | opts.definitions = { 26 | 'p': { 27 | validator: function () { return false; }, 28 | cardinality: 1 29 | }, 30 | '#': { 31 | validator: "[0-9]", 32 | cardinality: 1 33 | } 34 | }; 35 | var maskList = []; 36 | $.ajax({ 37 | url: opts.url, 38 | async: false, 39 | dataType: 'json', 40 | success: function (response) { 41 | maskList = response; 42 | } 43 | }); 44 | 45 | maskList.splice(0, 0, "+p(ppp)ppp-pppp"); 46 | return maskList; 47 | } 48 | } 49 | }); 50 | })(jQuery); 51 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/misc/jquery.ba-resize.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery resize event - v1.1 - 3/14/2010 3 | * http://benalman.com/projects/jquery-resize-plugin/ 4 | * 5 | * Copyright (c) 2010 "Cowboy" Ben Alman 6 | * Dual licensed under the MIT and GPL licenses. 7 | * http://benalman.com/about/license/ 8 | */ 9 | (function($,h,c){var a=$([]),e=$.resize=$.extend($.resize,{}),i,k="setTimeout",j="resize",d=j+"-special-event",b="delay",f="throttleWindow";e[b]=250;e[f]=true;$.event.special[j]={setup:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.add(l);$.data(this,d,{w:l.width(),h:l.height()});if(a.length===1){g()}},teardown:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.not(l);l.removeData(d);if(!a.length){clearTimeout(i)}},add:function(l){if(!e[f]&&this[k]){return false}var n;function m(s,o,p){var q=$(this),r=$.data(this,d);r.w=o!==c?o:q.width();r.h=p!==c?p:q.height();n.apply(this,arguments)}if($.isFunction(l)){n=l;return m}else{n=l.handler;l.handler=m}}};function g(){i=h[k](function(){a.each(function(){var n=$(this),m=n.width(),l=n.height(),o=$.data(this,d);if(m!==o.w||l!==o.h){n.trigger(j,[o.w=m,o.h=l])}});g()},e[b])}})(jQuery,this); -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/plugins/slimScroll/slimScroll.jquery.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "slimScroll", 3 | "version" : "1.2.0", 4 | "title" : "jQuery slimScroll scrollbar", 5 | "description" : "slimScroll is a small jQuery plugin that transforms any div into a scrollable area. slimScroll doesn't occupy any visual space as it only appears on a user initiated mouse-over.", 6 | "keywords" : ["scrollbar", "scroll", "slimscroll", "scrollable", "scrolling", "scroller", "ui"], 7 | "demo" : "http://rocha.la/jQuery-slimScroll/", 8 | "homepage" : "http://rocha.la/jQuery-slimScroll/", 9 | "download" : "http://rocha.la/jQuery-slimScroll/", 10 | 11 | "author" : { 12 | "name" : "Piotr Rochala", 13 | "url" : "http://rocha.la/" 14 | }, 15 | 16 | "dependencies" : { 17 | "jquery" : ">= 1.7" 18 | }, 19 | 20 | "licenses" : [ 21 | { 22 | "type": "MIT", 23 | "url": "http://www.opensource.org/licenses/mit-license.php" 24 | }, 25 | { 26 | "type": "GPL", 27 | "url": "http://www.opensource.org/licenses/gpl-license.php" 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/js/reserva.js: -------------------------------------------------------------------------------- 1 | $("[data-mask]").inputmask(); 2 | 3 | $("#btnBuscar").on('click', function (e) { 4 | e.preventDefault(); 5 | 6 | var dni = $("#txtDNI").val(); 7 | 8 | searchPacienteDni(dni); 9 | 10 | }); 11 | 12 | function searchPacienteDni(dni) { 13 | 14 | var data = JSON.stringify({ dni: dni }); 15 | $.ajax({ 16 | type: "POST", 17 | url: "GestionarReservaCitas.aspx/BuscarPacienteDNI", 18 | data: data, 19 | contentType: 'application/json; charset=utf-8', 20 | error: function (xhr, ajaxOptions, thrownError) { 21 | console.log(xhr.status + " \n" + xhr.responseText, "\n" + thrownError); 22 | }, 23 | success: function (data) { 24 | if (data.d == null) { 25 | alert('No exite el paciente con dni' + dni); 26 | limpiarDatosPaciente(); 27 | } else { 28 | llenarDatosPaciente(data.d); 29 | } 30 | 31 | } 32 | }); 33 | } 34 | 35 | 36 | function llenarDatosPaciente(obj) { 37 | $("#idPaciente").val(obj.IdPaciente); 38 | $("#txtNombres").val(obj.Nombres); 39 | $("#txtApellidos").val(obj.ApPaterno + " " + obj.ApMaterno); 40 | $("#txtTelefono").val(obj.Telefono); 41 | $("#txtEdad").val(obj.Edad); 42 | $("#txtSexo").val((obj.Sexo == 'M') ? 'Masculino' : 'Femenino'); 43 | } 44 | 45 | function limpiarDatosPaciente() { 46 | $("#idPaciente").val("0"); 47 | $("#txtNombres").val(""); 48 | $("#txtApellidos").val(""); 49 | $("#txtTelefono").val(""); 50 | $("#txtEdad").val(""); 51 | $("#txtSexo").val(""); 52 | } -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/CapaPresentacion/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/SistemaWebClinica.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/SistemaWebClinica.suo -------------------------------------------------------------------------------- /ProyectoWeb/CapaPresentacion/SistemaWebClinica.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjrodcast/Curso-ASP.NET-2016/0ddb44cb0fc1287e2dc77b23ba2b26dc233bd186/ProyectoWeb/CapaPresentacion/SistemaWebClinica.v12.suo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Curso-ASP.NET-2016 2 | Proyecto del curso de ASP.NET con WebForms 3 | --------------------------------------------------------------------------------