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