├── BookAPI.csproj ├── BookAPI.csproj.user ├── BookAPI.sln ├── Controllers └── BooksController.cs ├── Models ├── Book.cs └── BookContext.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Repositories ├── BookRepository.cs └── IBookRepository.cs ├── Startup.cs ├── appsettings.Development.json └── appsettings.json /BookAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/BookAPI.csproj -------------------------------------------------------------------------------- /BookAPI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/BookAPI.csproj.user -------------------------------------------------------------------------------- /BookAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/BookAPI.sln -------------------------------------------------------------------------------- /Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/Controllers/BooksController.cs -------------------------------------------------------------------------------- /Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/Models/Book.cs -------------------------------------------------------------------------------- /Models/BookContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/Models/BookContext.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/README.md -------------------------------------------------------------------------------- /Repositories/BookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/Repositories/BookRepository.cs -------------------------------------------------------------------------------- /Repositories/IBookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/Repositories/IBookRepository.cs -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/Startup.cs -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithpat/Web-API-With-ASP.NET-Core/HEAD/appsettings.json --------------------------------------------------------------------------------