├── .gitattributes ├── .github └── workflows │ ├── README.md │ ├── ci.yml │ ├── deploy.yml │ └── release.yml ├── .gitignore ├── CleanArchitecture.sln ├── LICENSE ├── README.md └── src ├── CleanArchitecture.ClientWeb ├── CleanArchitecture.ClientWeb.csproj ├── Pages │ ├── About.cshtml │ ├── About.cshtml.cs │ ├── Article │ │ ├── Create.cshtml │ │ ├── Create.cshtml.cs │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── _Layout.cshtml │ ├── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── Clean-Architecture - Web Deploy.pubxml │ │ └── CleanArchitectureClientWeb20180501015946 - Web Deploy.pubxml │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json ├── nlog.config └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── about_header.jpg │ └── favicon.ico │ ├── js │ ├── site.js │ └── site.min.js │ ├── lib │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ └── jquery.validate.js │ ├── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ │ ├── jquery.js │ │ │ └── jquery.min.map │ ├── popper │ │ ├── popper.js │ │ └── popper.min.js │ └── summernote │ │ └── dist │ │ ├── font │ │ ├── summernote.eot │ │ ├── summernote.ttf │ │ └── summernote.woff │ │ ├── lang │ │ ├── summernote-ar-AR.js │ │ ├── summernote-bg-BG.js │ │ ├── summernote-ca-ES.js │ │ ├── summernote-cs-CZ.js │ │ ├── summernote-da-DK.js │ │ ├── summernote-de-DE.js │ │ ├── summernote-el-GR.js │ │ ├── summernote-es-ES.js │ │ ├── summernote-es-EU.js │ │ ├── summernote-fa-IR.js │ │ ├── summernote-fi-FI.js │ │ ├── summernote-fr-FR.js │ │ ├── summernote-gl-ES.js │ │ ├── summernote-he-IL.js │ │ ├── summernote-hr-HR.js │ │ ├── summernote-hu-HU.js │ │ ├── summernote-id-ID.js │ │ ├── summernote-it-IT.js │ │ ├── summernote-ja-JP.js │ │ ├── summernote-ko-KR.js │ │ ├── summernote-lt-LT.js │ │ ├── summernote-lt-LV.js │ │ ├── summernote-mn-MN.js │ │ ├── summernote-nb-NO.js │ │ ├── summernote-nl-NL.js │ │ ├── summernote-pl-PL.js │ │ ├── summernote-pt-BR.js │ │ ├── summernote-pt-PT.js │ │ ├── summernote-ro-RO.js │ │ ├── summernote-ru-RU.js │ │ ├── summernote-sk-SK.js │ │ ├── summernote-sl-SI.js │ │ ├── summernote-sr-RS-Latin.js │ │ ├── summernote-sr-RS.js │ │ ├── summernote-sv-SE.js │ │ ├── summernote-ta-IN.js │ │ ├── summernote-th-TH.js │ │ ├── summernote-tr-TR.js │ │ ├── summernote-uk-UA.js │ │ ├── summernote-vi-VN.js │ │ ├── summernote-zh-CN.js │ │ └── summernote-zh-TW.js │ │ ├── plugin │ │ ├── databasic │ │ │ ├── summernote-ext-databasic.css │ │ │ └── summernote-ext-databasic.js │ │ ├── hello │ │ │ └── summernote-ext-hello.js │ │ └── specialchars │ │ │ └── summernote-ext-specialchars.js │ │ ├── summernote-bs4.css │ │ ├── summernote-bs4.js │ │ ├── summernote-bs4.min.js │ │ ├── summernote-lite.css │ │ ├── summernote-lite.js │ │ ├── summernote.css │ │ ├── summernote.js │ │ └── summernote.min.js │ └── uploads │ ├── bob_ross_boss.png │ └── bob_ross_painting_c203.jpg ├── CleanArchitecture.Core ├── CleanArchitecture.Core.csproj ├── Data │ ├── DTO │ │ ├── ArticleCategoryDTO.cs │ │ └── ArticleDTO.cs │ ├── Entity │ │ ├── ArticleCategoryEntity.cs │ │ ├── ArticleEntity.cs │ │ └── IEntity.cs │ └── IGenericRepository.cs ├── Extensions │ └── StringExtensions.cs ├── Logging │ ├── ILogger.cs │ └── LogLevel.cs ├── Mapping │ └── MappingProfile.cs └── Service │ ├── ArticleCategoryService.cs │ ├── ArticleService.cs │ ├── IArticleCategoryService.cs │ └── IArticleService.cs ├── CleanArchitecture.Infrastructure ├── CleanArchitecture.Infrastructure.csproj ├── Database │ ├── ApplicationDbContext.cs │ ├── ApplicationDbInitializer.cs │ └── Repository │ │ └── GenericRepository.cs └── Logging │ └── NlogLogger.cs └── CleanArchitecture.Test ├── CleanArchitecture.Test.csproj └── Data ├── Entity └── SimpleEntity.cs └── GenericRepositoryTest.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/.gitignore -------------------------------------------------------------------------------- /CleanArchitecture.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/CleanArchitecture.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/README.md -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/CleanArchitecture.ClientWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/CleanArchitecture.ClientWeb.csproj -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/About.cshtml -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/Article/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/Article/Create.cshtml -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/Article/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/Article/Create.cshtml.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/Article/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/Article/Index.cshtml -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/Article/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/Article/Index.cshtml.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Program.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Properties/PublishProfiles/Clean-Architecture - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Properties/PublishProfiles/Clean-Architecture - Web Deploy.pubxml -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Properties/PublishProfiles/CleanArchitectureClientWeb20180501015946 - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Properties/PublishProfiles/CleanArchitectureClientWeb20180501015946 - Web Deploy.pubxml -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/Startup.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/appsettings.Development.json -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/appsettings.json -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/bundleconfig.json -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/nlog.config -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/images/about_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/images/about_header.jpg -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/images/favicon.ico -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/popper/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/popper/popper.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/popper/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/popper/popper.min.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/font/summernote.eot -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/font/summernote.ttf -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/font/summernote.woff -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ar-AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ar-AR.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-bg-BG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-bg-BG.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ca-ES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ca-ES.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-cs-CZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-cs-CZ.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-da-DK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-da-DK.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-de-DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-de-DE.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-el-GR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-el-GR.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-es-ES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-es-ES.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-es-EU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-es-EU.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-fa-IR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-fa-IR.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-fi-FI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-fi-FI.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-fr-FR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-fr-FR.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-gl-ES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-gl-ES.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-he-IL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-he-IL.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-hr-HR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-hr-HR.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-hu-HU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-hu-HU.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-id-ID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-id-ID.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-it-IT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-it-IT.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ja-JP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ja-JP.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ko-KR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ko-KR.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-lt-LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-lt-LT.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-lt-LV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-lt-LV.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-mn-MN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-mn-MN.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-nb-NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-nb-NO.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-nl-NL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-nl-NL.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-pl-PL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-pl-PL.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-pt-BR.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-pt-PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-pt-PT.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ro-RO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ro-RO.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ru-RU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ru-RU.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-sk-SK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-sk-SK.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-sl-SI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-sl-SI.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-sr-RS-Latin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-sr-RS-Latin.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-sr-RS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-sr-RS.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-sv-SE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-sv-SE.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ta-IN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-ta-IN.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-th-TH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-th-TH.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-tr-TR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-tr-TR.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-uk-UA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-uk-UA.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-vi-VN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-vi-VN.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-zh-CN.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/lang/summernote-zh-TW.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/plugin/databasic/summernote-ext-databasic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/plugin/databasic/summernote-ext-databasic.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/plugin/databasic/summernote-ext-databasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/plugin/databasic/summernote-ext-databasic.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/plugin/hello/summernote-ext-hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/plugin/hello/summernote-ext-hello.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/plugin/specialchars/summernote-ext-specialchars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/plugin/specialchars/summernote-ext-specialchars.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote-bs4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote-bs4.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote-bs4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote-bs4.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote-bs4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote-bs4.min.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote-lite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote-lite.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote-lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote-lite.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote.css -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/lib/summernote/dist/summernote.min.js -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/uploads/bob_ross_boss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/uploads/bob_ross_boss.png -------------------------------------------------------------------------------- /src/CleanArchitecture.ClientWeb/wwwroot/uploads/bob_ross_painting_c203.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.ClientWeb/wwwroot/uploads/bob_ross_painting_c203.jpg -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/CleanArchitecture.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/CleanArchitecture.Core.csproj -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Data/DTO/ArticleCategoryDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Data/DTO/ArticleCategoryDTO.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Data/DTO/ArticleDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Data/DTO/ArticleDTO.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Data/Entity/ArticleCategoryEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Data/Entity/ArticleCategoryEntity.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Data/Entity/ArticleEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Data/Entity/ArticleEntity.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Data/Entity/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Data/Entity/IEntity.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Data/IGenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Data/IGenericRepository.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Logging/ILogger.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Logging/LogLevel.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Mapping/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Mapping/MappingProfile.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Service/ArticleCategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Service/ArticleCategoryService.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Service/ArticleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Service/ArticleService.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Service/IArticleCategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Service/IArticleCategoryService.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Core/Service/IArticleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Core/Service/IArticleService.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Infrastructure/CleanArchitecture.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Infrastructure/CleanArchitecture.Infrastructure.csproj -------------------------------------------------------------------------------- /src/CleanArchitecture.Infrastructure/Database/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Infrastructure/Database/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Infrastructure/Database/ApplicationDbInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Infrastructure/Database/ApplicationDbInitializer.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Infrastructure/Database/Repository/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Infrastructure/Database/Repository/GenericRepository.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Infrastructure/Logging/NlogLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Infrastructure/Logging/NlogLogger.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Test/CleanArchitecture.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Test/CleanArchitecture.Test.csproj -------------------------------------------------------------------------------- /src/CleanArchitecture.Test/Data/Entity/SimpleEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Test/Data/Entity/SimpleEntity.cs -------------------------------------------------------------------------------- /src/CleanArchitecture.Test/Data/GenericRepositoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tillman32/CleanArchitecture/HEAD/src/CleanArchitecture.Test/Data/GenericRepositoryTest.cs --------------------------------------------------------------------------------