├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── MongoBookStoreApp.Contracts ├── .gitignore ├── DTO │ ├── BaseResponseModel.cs │ ├── BookResponseModel.cs │ └── CreateOrUpdateBookDto.cs ├── DatabaseSettings.cs ├── Entities │ └── Book.cs ├── MongoBookStoreApp.Contracts.csproj ├── MongoCollectionNames.cs ├── Repositories │ ├── IBookRepository.cs │ └── IRepository.cs └── Services │ └── IDataService.cs ├── MongoBookStoreApp.Core ├── .gitignore ├── Data │ ├── MongoContext.cs │ ├── Repositories │ │ └── BookRepository.cs │ └── Services │ │ └── DataService.cs ├── MongoBookStoreApp.Core.csproj └── Validators │ └── CreateOrUpdateBookDtoValidator.cs ├── MongoBookStoreApp.Web ├── .gitignore ├── ClientApp │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.e2e.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── app.server.module.ts │ │ │ ├── models │ │ │ │ └── book.ts │ │ │ ├── modules │ │ │ │ ├── books │ │ │ │ │ ├── addoredit │ │ │ │ │ │ ├── addoredit.component.css │ │ │ │ │ │ ├── addoredit.component.html │ │ │ │ │ │ ├── addoredit.component.spec.ts │ │ │ │ │ │ └── addoredit.component.ts │ │ │ │ │ ├── books-routing.module.ts │ │ │ │ │ ├── books.module.ts │ │ │ │ │ ├── landing │ │ │ │ │ │ ├── landing.component.css │ │ │ │ │ │ ├── landing.component.html │ │ │ │ │ │ ├── landing.component.spec.ts │ │ │ │ │ │ └── landing.component.ts │ │ │ │ │ └── list │ │ │ │ │ │ ├── list.component.css │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ ├── list.component.spec.ts │ │ │ │ │ │ └── list.component.ts │ │ │ │ └── shared │ │ │ │ │ ├── home │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ │ └── nav-menu │ │ │ │ │ ├── nav-menu.component.css │ │ │ │ │ ├── nav-menu.component.html │ │ │ │ │ └── nav-menu.component.ts │ │ │ └── services │ │ │ │ ├── book.interceptor.ts │ │ │ │ └── books.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── karma.conf.js │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.server.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ ├── tsconfig.json │ └── tslint.json ├── Controllers │ └── BooksController.cs ├── Dockerfile ├── MongoBookStoreApp.Web.csproj ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── Seeder.cs ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── nuget.config └── wwwroot │ ├── assets │ └── data │ │ └── books.json │ └── favicon.ico ├── MongoBookStoreApp.sln ├── README.md ├── assets ├── add.png ├── bookstore.png └── update.png └── docker-compose.yml /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/LICENSE -------------------------------------------------------------------------------- /MongoBookStoreApp.Contracts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Contracts/.gitignore -------------------------------------------------------------------------------- /MongoBookStoreApp.Contracts/DTO/BaseResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Contracts/DTO/BaseResponseModel.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Contracts/DTO/BookResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Contracts/DTO/BookResponseModel.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Contracts/DTO/CreateOrUpdateBookDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Contracts/DTO/CreateOrUpdateBookDto.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Contracts/DatabaseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Contracts/DatabaseSettings.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Contracts/Entities/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Contracts/Entities/Book.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Contracts/MongoBookStoreApp.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Contracts/MongoBookStoreApp.Contracts.csproj -------------------------------------------------------------------------------- /MongoBookStoreApp.Contracts/MongoCollectionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Contracts/MongoCollectionNames.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Contracts/Repositories/IBookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Contracts/Repositories/IBookRepository.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Contracts/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Contracts/Repositories/IRepository.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Contracts/Services/IDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Contracts/Services/IDataService.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Core/.gitignore -------------------------------------------------------------------------------- /MongoBookStoreApp.Core/Data/MongoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Core/Data/MongoContext.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Core/Data/Repositories/BookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Core/Data/Repositories/BookRepository.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Core/Data/Services/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Core/Data/Services/DataService.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Core/MongoBookStoreApp.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Core/MongoBookStoreApp.Core.csproj -------------------------------------------------------------------------------- /MongoBookStoreApp.Core/Validators/CreateOrUpdateBookDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Core/Validators/CreateOrUpdateBookDtoValidator.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/.gitignore -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/.editorconfig -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/.gitignore -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/README.md -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/angular.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/browserslist -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/package-lock.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/package.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/app.server.module.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/models/book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/models/book.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/addoredit/addoredit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/addoredit/addoredit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/books/addoredit/addoredit.component.html -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/addoredit/addoredit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/books/addoredit/addoredit.component.spec.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/addoredit/addoredit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/books/addoredit/addoredit.component.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/books-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/books/books-routing.module.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/books.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/books/books.module.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/landing/landing.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/landing/landing.component.html: -------------------------------------------------------------------------------- 1 |

landing works!

2 | -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/landing/landing.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/books/landing/landing.component.spec.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/landing/landing.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/books/landing/landing.component.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/list/list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/list/list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/books/list/list.component.html -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/list/list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/books/list/list.component.spec.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/books/list/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/books/list/list.component.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/shared/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/shared/home/home.component.html -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/shared/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/shared/home/home.component.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/shared/nav-menu/nav-menu.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/shared/nav-menu/nav-menu.component.css -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/shared/nav-menu/nav-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/shared/nav-menu/nav-menu.component.html -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/modules/shared/nav-menu/nav-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/modules/shared/nav-menu/nav-menu.component.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/services/book.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/services/book.interceptor.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/app/services/books.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/app/services/books.service.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/index.html -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/karma.conf.js -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/main.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/styles.css -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/test.ts -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/tsconfig.server.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/src/tslint.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/ClientApp/tslint.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/Controllers/BooksController.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/Dockerfile -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/MongoBookStoreApp.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/MongoBookStoreApp.Web.csproj -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/Pages/Error.cshtml -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/Program.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/Seeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/Seeder.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/Startup.cs -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/appsettings.Development.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/appsettings.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/nuget.config -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/wwwroot/assets/data/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/wwwroot/assets/data/books.json -------------------------------------------------------------------------------- /MongoBookStoreApp.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /MongoBookStoreApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/MongoBookStoreApp.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/README.md -------------------------------------------------------------------------------- /assets/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/assets/add.png -------------------------------------------------------------------------------- /assets/bookstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/assets/bookstore.png -------------------------------------------------------------------------------- /assets/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/assets/update.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/referbruv/dotnetcore-mongo-bookstore/HEAD/docker-compose.yml --------------------------------------------------------------------------------