├── .gitattributes ├── .gitignore ├── ProgramandoEnASPNETMVC.sln ├── WcfService1 ├── IService1.cs ├── Properties │ └── AssemblyInfo.cs ├── Service1.svc ├── Service1.svc.cs ├── WcfService1.csproj ├── Web.Debug.config ├── Web.Release.config └── Web.config ├── WebApp ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── SimpleInjectorInitializer.cs ├── ApplicationInsights.config ├── Connected Services │ └── ServiceReference1 │ │ ├── Reference.cs │ │ ├── Reference.svcmap │ │ ├── Service1.disco │ │ ├── Service1.wsdl │ │ ├── Service1.xsd │ │ ├── Service11.xsd │ │ ├── Service12.xsd │ │ ├── WebApp.ServiceReference1.CompositeType.datasource │ │ ├── configuration.svcinfo │ │ └── configuration91.svcinfo ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Controllers │ └── HomeController.cs ├── Data │ ├── ApplicationDbContext.cs │ ├── Contratos │ │ ├── IRepositorio.cs │ │ └── IRepositorioDePersonas.cs │ ├── ParametrosDeQuery.cs │ └── Repositorios │ │ ├── Repositorio.cs │ │ └── RepositorioDePersonas.cs ├── Global.asax ├── Global.asax.cs ├── Helpers │ └── HTMLHelpers.cs ├── Migrations │ └── Configuration.cs ├── Models │ ├── Direccion.cs │ ├── Entidad.cs │ └── Persona.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── Servicios │ ├── IServicioPersonas.cs │ └── ServicioPersonas.cs ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WebApp.csproj ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config ├── WebAppAreas ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ └── RouteConfig.cs ├── ApplicationInsights.config ├── Areas │ ├── Admin │ │ ├── AdminAreaRegistration.cs │ │ ├── Controllers │ │ │ ├── AdminController.cs │ │ │ └── HomeController.cs │ │ └── Views │ │ │ ├── Home │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewStart.cshtml │ │ │ └── web.config │ └── WebPage │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config │ │ └── WebPageAreaRegistration.cs ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Global.asax ├── Global.asax.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WebAppAreas.csproj ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config └── WebApplication1.Tests ├── App.config ├── Controllers └── HomeControllerTest.cs ├── PersonaTest.cs ├── Properties └── AssemblyInfo.cs ├── RutasTests.cs ├── ServicioPersonasDummy.cs ├── WebApp.Tests.csproj └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/.gitignore -------------------------------------------------------------------------------- /ProgramandoEnASPNETMVC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/ProgramandoEnASPNETMVC.sln -------------------------------------------------------------------------------- /WcfService1/IService1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WcfService1/IService1.cs -------------------------------------------------------------------------------- /WcfService1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WcfService1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WcfService1/Service1.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WcfService1/Service1.svc -------------------------------------------------------------------------------- /WcfService1/Service1.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WcfService1/Service1.svc.cs -------------------------------------------------------------------------------- /WcfService1/WcfService1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WcfService1/WcfService1.csproj -------------------------------------------------------------------------------- /WcfService1/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WcfService1/Web.Debug.config -------------------------------------------------------------------------------- /WcfService1/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WcfService1/Web.Release.config -------------------------------------------------------------------------------- /WcfService1/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WcfService1/Web.config -------------------------------------------------------------------------------- /WebApp/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /WebApp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /WebApp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /WebApp/App_Start/SimpleInjectorInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/App_Start/SimpleInjectorInitializer.cs -------------------------------------------------------------------------------- /WebApp/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/ApplicationInsights.config -------------------------------------------------------------------------------- /WebApp/Connected Services/ServiceReference1/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Connected Services/ServiceReference1/Reference.cs -------------------------------------------------------------------------------- /WebApp/Connected Services/ServiceReference1/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Connected Services/ServiceReference1/Reference.svcmap -------------------------------------------------------------------------------- /WebApp/Connected Services/ServiceReference1/Service1.disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Connected Services/ServiceReference1/Service1.disco -------------------------------------------------------------------------------- /WebApp/Connected Services/ServiceReference1/Service1.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Connected Services/ServiceReference1/Service1.wsdl -------------------------------------------------------------------------------- /WebApp/Connected Services/ServiceReference1/Service1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Connected Services/ServiceReference1/Service1.xsd -------------------------------------------------------------------------------- /WebApp/Connected Services/ServiceReference1/Service11.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Connected Services/ServiceReference1/Service11.xsd -------------------------------------------------------------------------------- /WebApp/Connected Services/ServiceReference1/Service12.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Connected Services/ServiceReference1/Service12.xsd -------------------------------------------------------------------------------- /WebApp/Connected Services/ServiceReference1/WebApp.ServiceReference1.CompositeType.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Connected Services/ServiceReference1/WebApp.ServiceReference1.CompositeType.datasource -------------------------------------------------------------------------------- /WebApp/Connected Services/ServiceReference1/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Connected Services/ServiceReference1/configuration.svcinfo -------------------------------------------------------------------------------- /WebApp/Connected Services/ServiceReference1/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Connected Services/ServiceReference1/configuration91.svcinfo -------------------------------------------------------------------------------- /WebApp/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Content/Site.css -------------------------------------------------------------------------------- /WebApp/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Content/bootstrap.css -------------------------------------------------------------------------------- /WebApp/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Content/bootstrap.min.css -------------------------------------------------------------------------------- /WebApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /WebApp/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /WebApp/Data/Contratos/IRepositorio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Data/Contratos/IRepositorio.cs -------------------------------------------------------------------------------- /WebApp/Data/Contratos/IRepositorioDePersonas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Data/Contratos/IRepositorioDePersonas.cs -------------------------------------------------------------------------------- /WebApp/Data/ParametrosDeQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Data/ParametrosDeQuery.cs -------------------------------------------------------------------------------- /WebApp/Data/Repositorios/Repositorio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Data/Repositorios/Repositorio.cs -------------------------------------------------------------------------------- /WebApp/Data/Repositorios/RepositorioDePersonas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Data/Repositorios/RepositorioDePersonas.cs -------------------------------------------------------------------------------- /WebApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Global.asax -------------------------------------------------------------------------------- /WebApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Global.asax.cs -------------------------------------------------------------------------------- /WebApp/Helpers/HTMLHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Helpers/HTMLHelpers.cs -------------------------------------------------------------------------------- /WebApp/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Migrations/Configuration.cs -------------------------------------------------------------------------------- /WebApp/Models/Direccion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Models/Direccion.cs -------------------------------------------------------------------------------- /WebApp/Models/Entidad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Models/Entidad.cs -------------------------------------------------------------------------------- /WebApp/Models/Persona.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Models/Persona.cs -------------------------------------------------------------------------------- /WebApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebApp/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/bootstrap.js -------------------------------------------------------------------------------- /WebApp/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /WebApp/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /WebApp/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /WebApp/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /WebApp/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /WebApp/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /WebApp/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /WebApp/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /WebApp/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /WebApp/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /WebApp/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /WebApp/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/respond.js -------------------------------------------------------------------------------- /WebApp/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Scripts/respond.min.js -------------------------------------------------------------------------------- /WebApp/Servicios/IServicioPersonas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Servicios/IServicioPersonas.cs -------------------------------------------------------------------------------- /WebApp/Servicios/ServicioPersonas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Servicios/ServicioPersonas.cs -------------------------------------------------------------------------------- /WebApp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Views/Home/About.cshtml -------------------------------------------------------------------------------- /WebApp/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /WebApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /WebApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /WebApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WebApp/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Views/Web.config -------------------------------------------------------------------------------- /WebApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WebApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Web.Debug.config -------------------------------------------------------------------------------- /WebApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Web.Release.config -------------------------------------------------------------------------------- /WebApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/Web.config -------------------------------------------------------------------------------- /WebApp/WebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/WebApp.csproj -------------------------------------------------------------------------------- /WebApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/favicon.ico -------------------------------------------------------------------------------- /WebApp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebApp/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /WebApp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebApp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApp/packages.config -------------------------------------------------------------------------------- /WebAppAreas/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /WebAppAreas/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /WebAppAreas/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /WebAppAreas/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/ApplicationInsights.config -------------------------------------------------------------------------------- /WebAppAreas/Areas/Admin/AdminAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/Admin/AdminAreaRegistration.cs -------------------------------------------------------------------------------- /WebAppAreas/Areas/Admin/Controllers/AdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/Admin/Controllers/AdminController.cs -------------------------------------------------------------------------------- /WebAppAreas/Areas/Admin/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/Admin/Controllers/HomeController.cs -------------------------------------------------------------------------------- /WebAppAreas/Areas/Admin/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/Admin/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /WebAppAreas/Areas/Admin/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/Admin/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WebAppAreas/Areas/Admin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/Admin/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WebAppAreas/Areas/Admin/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/Admin/Views/web.config -------------------------------------------------------------------------------- /WebAppAreas/Areas/WebPage/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/WebPage/Controllers/HomeController.cs -------------------------------------------------------------------------------- /WebAppAreas/Areas/WebPage/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/WebPage/Views/Home/About.cshtml -------------------------------------------------------------------------------- /WebAppAreas/Areas/WebPage/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/WebPage/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /WebAppAreas/Areas/WebPage/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/WebPage/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /WebAppAreas/Areas/WebPage/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/WebPage/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /WebAppAreas/Areas/WebPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/WebPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WebAppAreas/Areas/WebPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/WebPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WebAppAreas/Areas/WebPage/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/WebPage/Views/web.config -------------------------------------------------------------------------------- /WebAppAreas/Areas/WebPage/WebPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Areas/WebPage/WebPageAreaRegistration.cs -------------------------------------------------------------------------------- /WebAppAreas/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Content/Site.css -------------------------------------------------------------------------------- /WebAppAreas/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Content/bootstrap.css -------------------------------------------------------------------------------- /WebAppAreas/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Content/bootstrap.min.css -------------------------------------------------------------------------------- /WebAppAreas/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Global.asax -------------------------------------------------------------------------------- /WebAppAreas/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Global.asax.cs -------------------------------------------------------------------------------- /WebAppAreas/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAppAreas/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/bootstrap.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /WebAppAreas/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/respond.js -------------------------------------------------------------------------------- /WebAppAreas/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Scripts/respond.min.js -------------------------------------------------------------------------------- /WebAppAreas/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Web.Debug.config -------------------------------------------------------------------------------- /WebAppAreas/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Web.Release.config -------------------------------------------------------------------------------- /WebAppAreas/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/Web.config -------------------------------------------------------------------------------- /WebAppAreas/WebAppAreas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/WebAppAreas.csproj -------------------------------------------------------------------------------- /WebAppAreas/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/favicon.ico -------------------------------------------------------------------------------- /WebAppAreas/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebAppAreas/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /WebAppAreas/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebAppAreas/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebAppAreas/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebAppAreas/packages.config -------------------------------------------------------------------------------- /WebApplication1.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApplication1.Tests/App.config -------------------------------------------------------------------------------- /WebApplication1.Tests/Controllers/HomeControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApplication1.Tests/Controllers/HomeControllerTest.cs -------------------------------------------------------------------------------- /WebApplication1.Tests/PersonaTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApplication1.Tests/PersonaTest.cs -------------------------------------------------------------------------------- /WebApplication1.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApplication1.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebApplication1.Tests/RutasTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApplication1.Tests/RutasTests.cs -------------------------------------------------------------------------------- /WebApplication1.Tests/ServicioPersonasDummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApplication1.Tests/ServicioPersonasDummy.cs -------------------------------------------------------------------------------- /WebApplication1.Tests/WebApp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApplication1.Tests/WebApp.Tests.csproj -------------------------------------------------------------------------------- /WebApplication1.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavilanch/Patron-del-repositorio-mvc5/HEAD/WebApplication1.Tests/packages.config --------------------------------------------------------------------------------