├── .vs ├── EFCoreGenericRepositorySolution │ └── v15 │ │ ├── .suo │ │ └── sqlite3 │ │ └── storage.ide └── config │ └── applicationhost.config ├── Blog.Ui ├── .bowerrc ├── Blog.Ui.csproj ├── Controllers │ ├── BlogsApiController.cs │ ├── BlogsController.cs │ └── HomeController.cs ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── Views │ ├── Blogs │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp2.0 │ │ ├── Blog.Ui.deps.json │ │ ├── Blog.Ui.dll │ │ ├── Blog.Ui.pdb │ │ ├── Blog.Ui.runtimeconfig.dev.json │ │ ├── Blog.Ui.runtimeconfig.json │ │ ├── EfCoreGenericRepository.dll │ │ └── EfCoreGenericRepository.pdb ├── bower.json ├── bundleconfig.json ├── obj │ ├── Blog.Ui.csproj.nuget.cache │ ├── Blog.Ui.csproj.nuget.g.props │ ├── Blog.Ui.csproj.nuget.g.targets │ ├── Debug │ │ └── netcoreapp2.0 │ │ │ ├── Blog.Ui.AssemblyInfo.cs │ │ │ ├── Blog.Ui.AssemblyInfoInputs.cache │ │ │ ├── Blog.Ui.csproj.CopyComplete │ │ │ ├── Blog.Ui.csproj.CoreCompileInputs.cache │ │ │ ├── Blog.Ui.csproj.FileListAbsolute.txt │ │ │ ├── Blog.Ui.csprojResolveAssemblyReference.cache │ │ │ ├── Blog.Ui.dll │ │ │ └── Blog.Ui.pdb │ └── project.assets.json └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── EFCoreGenericRepositorySolution.sln └── EfCoreGenericRepository ├── DataAccess ├── BlogRepository.cs ├── DataContext.cs ├── GenericRepository.cs ├── IBlogRepository.cs ├── IGenericRepository.cs ├── IPostRepository.cs └── PostRepository.cs ├── EfCoreGenericRepository.csproj ├── Models ├── Blog.cs ├── BlogDetail.cs ├── IAuditable.cs └── Post.cs ├── bin └── Debug │ └── netstandard2.0 │ ├── EfCoreGenericRepository.deps.json │ ├── EfCoreGenericRepository.dll │ └── EfCoreGenericRepository.pdb └── obj ├── Debug └── netstandard2.0 │ ├── EfCoreGenericRepository.AssemblyInfo.cs │ ├── EfCoreGenericRepository.AssemblyInfoInputs.cache │ ├── EfCoreGenericRepository.csproj.CoreCompileInputs.cache │ ├── EfCoreGenericRepository.csproj.FileListAbsolute.txt │ ├── EfCoreGenericRepository.csprojResolveAssemblyReference.cache │ ├── EfCoreGenericRepository.dll │ └── EfCoreGenericRepository.pdb ├── EfCoreGenericRepository.csproj.nuget.cache ├── EfCoreGenericRepository.csproj.nuget.g.props ├── EfCoreGenericRepository.csproj.nuget.g.targets └── project.assets.json /.vs/EFCoreGenericRepositorySolution/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/.vs/EFCoreGenericRepositorySolution/v15/.suo -------------------------------------------------------------------------------- /.vs/EFCoreGenericRepositorySolution/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/.vs/EFCoreGenericRepositorySolution/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /Blog.Ui/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Blog.Ui/Blog.Ui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Blog.Ui.csproj -------------------------------------------------------------------------------- /Blog.Ui/Controllers/BlogsApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Controllers/BlogsApiController.cs -------------------------------------------------------------------------------- /Blog.Ui/Controllers/BlogsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Controllers/BlogsController.cs -------------------------------------------------------------------------------- /Blog.Ui/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Blog.Ui/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Blog.Ui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Program.cs -------------------------------------------------------------------------------- /Blog.Ui/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Properties/launchSettings.json -------------------------------------------------------------------------------- /Blog.Ui/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Startup.cs -------------------------------------------------------------------------------- /Blog.Ui/Views/Blogs/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/Blogs/Create.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/Blogs/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/Blogs/Delete.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/Blogs/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/Blogs/Details.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/Blogs/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/Blogs/Edit.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/Blogs/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/Blogs/Index.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Blog.Ui/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Blog.Ui/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/appsettings.Development.json -------------------------------------------------------------------------------- /Blog.Ui/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/appsettings.json -------------------------------------------------------------------------------- /Blog.Ui/bin/Debug/netcoreapp2.0/Blog.Ui.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/bin/Debug/netcoreapp2.0/Blog.Ui.deps.json -------------------------------------------------------------------------------- /Blog.Ui/bin/Debug/netcoreapp2.0/Blog.Ui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/bin/Debug/netcoreapp2.0/Blog.Ui.dll -------------------------------------------------------------------------------- /Blog.Ui/bin/Debug/netcoreapp2.0/Blog.Ui.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/bin/Debug/netcoreapp2.0/Blog.Ui.pdb -------------------------------------------------------------------------------- /Blog.Ui/bin/Debug/netcoreapp2.0/Blog.Ui.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/bin/Debug/netcoreapp2.0/Blog.Ui.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Blog.Ui/bin/Debug/netcoreapp2.0/Blog.Ui.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/bin/Debug/netcoreapp2.0/Blog.Ui.runtimeconfig.json -------------------------------------------------------------------------------- /Blog.Ui/bin/Debug/netcoreapp2.0/EfCoreGenericRepository.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/bin/Debug/netcoreapp2.0/EfCoreGenericRepository.dll -------------------------------------------------------------------------------- /Blog.Ui/bin/Debug/netcoreapp2.0/EfCoreGenericRepository.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/bin/Debug/netcoreapp2.0/EfCoreGenericRepository.pdb -------------------------------------------------------------------------------- /Blog.Ui/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/bower.json -------------------------------------------------------------------------------- /Blog.Ui/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/bundleconfig.json -------------------------------------------------------------------------------- /Blog.Ui/obj/Blog.Ui.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/obj/Blog.Ui.csproj.nuget.cache -------------------------------------------------------------------------------- /Blog.Ui/obj/Blog.Ui.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/obj/Blog.Ui.csproj.nuget.g.props -------------------------------------------------------------------------------- /Blog.Ui/obj/Blog.Ui.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/obj/Blog.Ui.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.AssemblyInfo.cs -------------------------------------------------------------------------------- /Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 259bc9abd88c562e20012d82d7ecb7d67b4ef15b 2 | -------------------------------------------------------------------------------- /Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 54dd931fbe4248807d40c8d129500ae71284846d 2 | -------------------------------------------------------------------------------- /Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.dll -------------------------------------------------------------------------------- /Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/obj/Debug/netcoreapp2.0/Blog.Ui.pdb -------------------------------------------------------------------------------- /Blog.Ui/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/obj/project.assets.json -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/css/site.css -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Blog.Ui/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/Blog.Ui/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /EFCoreGenericRepositorySolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EFCoreGenericRepositorySolution.sln -------------------------------------------------------------------------------- /EfCoreGenericRepository/DataAccess/BlogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/DataAccess/BlogRepository.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/DataAccess/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/DataAccess/DataContext.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/DataAccess/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/DataAccess/GenericRepository.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/DataAccess/IBlogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/DataAccess/IBlogRepository.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/DataAccess/IGenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/DataAccess/IGenericRepository.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/DataAccess/IPostRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/DataAccess/IPostRepository.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/DataAccess/PostRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/DataAccess/PostRepository.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/EfCoreGenericRepository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/EfCoreGenericRepository.csproj -------------------------------------------------------------------------------- /EfCoreGenericRepository/Models/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/Models/Blog.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/Models/BlogDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/Models/BlogDetail.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/Models/IAuditable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/Models/IAuditable.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/Models/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/Models/Post.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/bin/Debug/netstandard2.0/EfCoreGenericRepository.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/bin/Debug/netstandard2.0/EfCoreGenericRepository.deps.json -------------------------------------------------------------------------------- /EfCoreGenericRepository/bin/Debug/netstandard2.0/EfCoreGenericRepository.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/bin/Debug/netstandard2.0/EfCoreGenericRepository.dll -------------------------------------------------------------------------------- /EfCoreGenericRepository/bin/Debug/netstandard2.0/EfCoreGenericRepository.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/bin/Debug/netstandard2.0/EfCoreGenericRepository.pdb -------------------------------------------------------------------------------- /EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.AssemblyInfo.cs -------------------------------------------------------------------------------- /EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 5739524e46a157cb809660c7b260bd8ad44658b2 2 | -------------------------------------------------------------------------------- /EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 52ab2db8abb7d4f35d6c74667b381efc68f9b5f6 2 | -------------------------------------------------------------------------------- /EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.dll -------------------------------------------------------------------------------- /EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/obj/Debug/netstandard2.0/EfCoreGenericRepository.pdb -------------------------------------------------------------------------------- /EfCoreGenericRepository/obj/EfCoreGenericRepository.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/obj/EfCoreGenericRepository.csproj.nuget.cache -------------------------------------------------------------------------------- /EfCoreGenericRepository/obj/EfCoreGenericRepository.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/obj/EfCoreGenericRepository.csproj.nuget.g.props -------------------------------------------------------------------------------- /EfCoreGenericRepository/obj/EfCoreGenericRepository.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/obj/EfCoreGenericRepository.csproj.nuget.g.targets -------------------------------------------------------------------------------- /EfCoreGenericRepository/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartITAz/EFCoreGenericRepositorySolution/HEAD/EfCoreGenericRepository/obj/project.assets.json --------------------------------------------------------------------------------