├── .gitignore ├── App_Start ├── FilterConfig.cs ├── Startup.OAuth.cs └── WebApiConfig.cs ├── BooksAPI.csproj ├── Controllers ├── BooksController.cs └── ReviewsController.cs ├── Core ├── BookUserManager.cs ├── BookUserStore.cs ├── BooksContext.cs ├── Configuration.cs └── Initializer.cs ├── Global.asax ├── Global.asax.cs ├── Identity ├── CustomJwtFormat.cs └── CustomOAuthProvider.cs ├── LICENSE ├── Models ├── Book.cs └── Review.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── Startup.cs ├── ViewModels └── ReviewViewModel.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── keys.config └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /App_Start/Startup.OAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/App_Start/Startup.OAuth.cs -------------------------------------------------------------------------------- /App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /BooksAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/BooksAPI.csproj -------------------------------------------------------------------------------- /Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Controllers/BooksController.cs -------------------------------------------------------------------------------- /Controllers/ReviewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Controllers/ReviewsController.cs -------------------------------------------------------------------------------- /Core/BookUserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Core/BookUserManager.cs -------------------------------------------------------------------------------- /Core/BookUserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Core/BookUserStore.cs -------------------------------------------------------------------------------- /Core/BooksContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Core/BooksContext.cs -------------------------------------------------------------------------------- /Core/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Core/Configuration.cs -------------------------------------------------------------------------------- /Core/Initializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Core/Initializer.cs -------------------------------------------------------------------------------- /Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Global.asax -------------------------------------------------------------------------------- /Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Global.asax.cs -------------------------------------------------------------------------------- /Identity/CustomJwtFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Identity/CustomJwtFormat.cs -------------------------------------------------------------------------------- /Identity/CustomOAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Identity/CustomOAuthProvider.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Models/Book.cs -------------------------------------------------------------------------------- /Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Models/Review.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BooksAPI -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Startup.cs -------------------------------------------------------------------------------- /ViewModels/ReviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/ViewModels/ReviewViewModel.cs -------------------------------------------------------------------------------- /Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Web.Debug.config -------------------------------------------------------------------------------- /Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Web.Release.config -------------------------------------------------------------------------------- /Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/Web.config -------------------------------------------------------------------------------- /keys.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/keys.config -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpreecedev/BookStoreAPI/HEAD/packages.config --------------------------------------------------------------------------------