├── .gitattributes ├── .gitignore ├── App_Data ├── Application.mdf └── Application_log.ldf ├── App_Start ├── RouteConfig.cs └── UnityConfig.cs ├── Content ├── Site.css ├── bootstrap.css └── bootstrap.min.css ├── Controllers └── EmployeeInfoController.cs ├── Global.asax ├── Global.asax.cs ├── MVC_Repository.csproj ├── MVC_Repository.csproj.user ├── Models ├── ApplicationModel.Context.cs ├── ApplicationModel.Context.tt ├── ApplicationModel.Designer.cs ├── ApplicationModel.cs ├── ApplicationModel.edmx ├── ApplicationModel.edmx.diagram ├── ApplicationModel.tt └── EmployeeInfo.cs ├── Properties └── AssemblyInfo.cs ├── Repositories ├── EmployeeInfoRepository.cs └── IRepository.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 ├── Views ├── EmployeeInfo │ ├── Create.cshtml │ ├── Delete.cshtml │ └── Index.cshtml ├── Shared │ └── _Layout.cshtml ├── _ViewStart.cshtml └── web.config ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── obj └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── MVC_Repository.csproj.FileListAbsolute.txt │ ├── MVC_Repository.dll │ ├── MVC_Repository.pdb │ ├── TempPE │ ├── Models.ApplicationModel.Designer.cs.dll │ └── Models.ApplicationModel.cs.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── edmxResourcesToEmbed │ └── Models │ ├── ApplicationModel.csdl │ ├── ApplicationModel.msl │ └── ApplicationModel.ssdl └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/.gitignore -------------------------------------------------------------------------------- /App_Data/Application.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/App_Data/Application.mdf -------------------------------------------------------------------------------- /App_Data/Application_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/App_Data/Application_log.ldf -------------------------------------------------------------------------------- /App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /App_Start/UnityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/App_Start/UnityConfig.cs -------------------------------------------------------------------------------- /Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Content/Site.css -------------------------------------------------------------------------------- /Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Content/bootstrap.css -------------------------------------------------------------------------------- /Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Content/bootstrap.min.css -------------------------------------------------------------------------------- /Controllers/EmployeeInfoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Controllers/EmployeeInfoController.cs -------------------------------------------------------------------------------- /Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Global.asax -------------------------------------------------------------------------------- /Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Global.asax.cs -------------------------------------------------------------------------------- /MVC_Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/MVC_Repository.csproj -------------------------------------------------------------------------------- /MVC_Repository.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/MVC_Repository.csproj.user -------------------------------------------------------------------------------- /Models/ApplicationModel.Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Models/ApplicationModel.Context.cs -------------------------------------------------------------------------------- /Models/ApplicationModel.Context.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Models/ApplicationModel.Context.tt -------------------------------------------------------------------------------- /Models/ApplicationModel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Models/ApplicationModel.Designer.cs -------------------------------------------------------------------------------- /Models/ApplicationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Models/ApplicationModel.cs -------------------------------------------------------------------------------- /Models/ApplicationModel.edmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Models/ApplicationModel.edmx -------------------------------------------------------------------------------- /Models/ApplicationModel.edmx.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Models/ApplicationModel.edmx.diagram -------------------------------------------------------------------------------- /Models/ApplicationModel.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Models/ApplicationModel.tt -------------------------------------------------------------------------------- /Models/EmployeeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Models/EmployeeInfo.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Repositories/EmployeeInfoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Repositories/EmployeeInfoRepository.cs -------------------------------------------------------------------------------- /Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Repositories/IRepository.cs -------------------------------------------------------------------------------- /Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/bootstrap.js -------------------------------------------------------------------------------- /Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /Views/EmployeeInfo/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Views/EmployeeInfo/Create.cshtml -------------------------------------------------------------------------------- /Views/EmployeeInfo/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Views/EmployeeInfo/Delete.cshtml -------------------------------------------------------------------------------- /Views/EmployeeInfo/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Views/EmployeeInfo/Index.cshtml -------------------------------------------------------------------------------- /Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Views/web.config -------------------------------------------------------------------------------- /Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Web.Debug.config -------------------------------------------------------------------------------- /Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Web.Release.config -------------------------------------------------------------------------------- /Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/Web.config -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/Debug/MVC_Repository.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/obj/Debug/MVC_Repository.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/MVC_Repository.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/obj/Debug/MVC_Repository.dll -------------------------------------------------------------------------------- /obj/Debug/MVC_Repository.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/obj/Debug/MVC_Repository.pdb -------------------------------------------------------------------------------- /obj/Debug/TempPE/Models.ApplicationModel.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/obj/Debug/TempPE/Models.ApplicationModel.Designer.cs.dll -------------------------------------------------------------------------------- /obj/Debug/TempPE/Models.ApplicationModel.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/obj/Debug/TempPE/Models.ApplicationModel.cs.dll -------------------------------------------------------------------------------- /obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/edmxResourcesToEmbed/Models/ApplicationModel.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/obj/Debug/edmxResourcesToEmbed/Models/ApplicationModel.csdl -------------------------------------------------------------------------------- /obj/Debug/edmxResourcesToEmbed/Models/ApplicationModel.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/obj/Debug/edmxResourcesToEmbed/Models/ApplicationModel.msl -------------------------------------------------------------------------------- /obj/Debug/edmxResourcesToEmbed/Models/ApplicationModel.ssdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/obj/Debug/edmxResourcesToEmbed/Models/ApplicationModel.ssdl -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/ASP.NET-MVC-Repository-pattern/HEAD/packages.config --------------------------------------------------------------------------------