├── .gitignore ├── .travis.yml ├── Documents ├── Architecture.png ├── Building Modern RESTFul API's With ASP.NET Core - Architectural Overview.pdf ├── Generic Repository.png ├── HTTP_StatusCodes.png ├── HTTP_StatusCodes_By_Group.png ├── Understending RESTFul API's .pdf └── VO Pattern.png ├── Images ├── banner_blog_udemy_course_aspnetcore.jpg └── udemy.png ├── README.md ├── RestWithASPNETUdemy 00 - Scafold ├── .vs │ ├── RestWithASPNETUdemy │ │ └── v15 │ │ │ ├── .suo │ │ │ └── sqlite3 │ │ │ └── storage.ide │ └── config │ │ └── applicationhost.config ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Controllers │ └── ValuesController.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── RestWithASPNETUdemy.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ └── Debug │ │ └── netcoreapp1.1 │ │ ├── RestWithASPNETUdemy.deps.json │ │ ├── RestWithASPNETUdemy.dll │ │ ├── RestWithASPNETUdemy.pdb │ │ ├── RestWithASPNETUdemy.runtimeconfig.dev.json │ │ └── RestWithASPNETUdemy.runtimeconfig.json │ └── obj │ ├── Debug │ └── netcoreapp1.1 │ │ ├── RestWithASPNETUdemy.AssemblyInfo.cs │ │ ├── RestWithASPNETUdemy.AssemblyInfoInputs.cache │ │ ├── RestWithASPNETUdemy.csproj.CoreCompileInputs.cache │ │ ├── RestWithASPNETUdemy.csproj.FileListAbsolute.txt │ │ ├── RestWithASPNETUdemy.csprojResolveAssemblyReference.cache │ │ ├── RestWithASPNETUdemy.dll │ │ ├── RestWithASPNETUdemy.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── RestWithASPNETUdemy.csproj.nuget.cache │ ├── RestWithASPNETUdemy.csproj.nuget.g.props │ ├── RestWithASPNETUdemy.csproj.nuget.g.targets │ └── project.assets.json ├── RestWithASPNETUdemy 01 - Calculator ├── .vs │ ├── RestWithASPNETUdemy │ │ └── v15 │ │ │ ├── .suo │ │ │ └── sqlite3 │ │ │ └── storage.ide │ └── config │ │ └── applicationhost.config ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Controllers │ ├── CalculatorController.cs │ └── ValuesController.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── RestWithASPNETUdemy.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── RestWithASPNETUdemy 02 - Using Diferent Verbs ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Controllers │ └── PersonsController.cs │ ├── Model │ └── Person.cs │ ├── Program.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Services │ ├── IPersonService.cs │ └── Implementattions │ │ └── PersonServiceImpl.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ └── script.sql ├── RestWithASPNETUdemy 03 - Connecting To Database ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Controllers │ └── PersonsController.cs │ ├── Model │ ├── Context │ │ └── MySQLContext.cs │ └── Person.cs │ ├── Program.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Services │ ├── IPersonService.cs │ └── Implementattions │ │ └── PersonServiceImpl.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ └── script.sql ├── RestWithASPNETUdemy 04 - Versioning Endpoints ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Controllers │ └── PersonsController.cs │ ├── Model │ ├── Context │ │ └── MySQLContext.cs │ └── Person.cs │ ├── Program.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Services │ ├── IPersonService.cs │ └── Implementattions │ │ └── PersonServiceImpl.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ └── script.sql ├── RestWithASPNETUdemy 05 - Spliting Logic ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IPersonBusiness.cs │ └── Implementattions │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ └── PersonsController.cs │ ├── Model │ ├── Context │ │ └── MySQLContext.cs │ └── Person.cs │ ├── Program.cs │ ├── Repository │ ├── IPersonRepository.cs │ └── Implementattions │ │ └── PersonRepositorympl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ └── script.sql ├── RestWithASPNETUdemy 06 - Adding Support To Database Migrations ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IPersonBusiness.cs │ └── Implementattions │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ └── PersonsController.cs │ ├── Evolve.json │ ├── Model │ ├── Context │ │ └── MySQLContext.cs │ └── Person.cs │ ├── Program.cs │ ├── Repository │ ├── IPersonRepository.cs │ └── Implementattions │ │ └── PersonRepositorympl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_4__Insert_data_in_books.sql │ └── V1_0_5__Insert_data_in_persons.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ └── V1_0_3__Create_table_books.sql ├── RestWithASPNETUdemy 07 - Working With Generic Repository ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IBookBusiness.cs │ ├── IPersonBusiness.cs │ └── Implementattions │ │ ├── BookBusinessImpl.cs │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ ├── BooksController.cs │ └── PersonsController.cs │ ├── Evolve.json │ ├── Model │ ├── Base │ │ └── BaseEntity.cs │ ├── Book.cs │ ├── Context │ │ └── MySQLContext.cs │ └── Person.cs │ ├── Program.cs │ ├── Repository │ ├── Generic │ │ ├── GenericRepository.cs │ │ └── IRepository.cs │ ├── IPersonRepository.cs │ └── Implementattions │ │ └── PersonRepositorympl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_4__Insert_data_in_books.sql │ ├── V1_0_5__Insert_data_in_persons.sql │ └── V1_0_8__Reinsert_data_in_books.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ ├── V1_0_3__Create_table_books.sql │ ├── V1_0_6__Drop_table_books.sql │ └── V1_0_7__Recreate_table_books.sql ├── RestWithASPNETUdemy 08 - Working With Value Objects ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IBookBusiness.cs │ ├── IPersonBusiness.cs │ └── Implementattions │ │ ├── BookBusinessImpl.cs │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ ├── BooksController.cs │ └── PersonsController.cs │ ├── Data │ ├── Converter │ │ └── IParser.cs │ ├── Converters │ │ ├── BookConverter.cs │ │ └── PersonConverter.cs │ └── VO │ │ ├── BookVO.cs │ │ └── PersonVO.cs │ ├── Evolve.json │ ├── Model │ ├── Base │ │ └── BaseEntity.cs │ ├── Book.cs │ ├── Context │ │ └── MySQLContext.cs │ └── Person.cs │ ├── Program.cs │ ├── Repository │ ├── Generic │ │ ├── GenericRepository.cs │ │ └── IRepository.cs │ ├── IPersonRepository.cs │ └── Implementattions │ │ └── PersonRepositorympl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_4__Insert_data_in_books.sql │ ├── V1_0_5__Insert_data_in_persons.sql │ └── V1_0_8__Reinsert_data_in_books.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ ├── V1_0_3__Create_table_books.sql │ ├── V1_0_6__Drop_table_books.sql │ └── V1_0_7__Recreate_table_books.sql ├── RestWithASPNETUdemy 09 - Data Contract ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IBookBusiness.cs │ ├── IPersonBusiness.cs │ └── Implementattions │ │ ├── BookBusinessImpl.cs │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ ├── BooksController.cs │ └── PersonsController.cs │ ├── Data │ ├── Converter │ │ └── IParser.cs │ ├── Converters │ │ ├── BookConverter.cs │ │ └── PersonConverter.cs │ └── VO │ │ ├── BookVO.cs │ │ └── PersonVO.cs │ ├── Evolve.json │ ├── Model │ ├── Base │ │ └── BaseEntity.cs │ ├── Book.cs │ ├── Context │ │ └── MySQLContext.cs │ └── Person.cs │ ├── Program.cs │ ├── Repository │ ├── Generic │ │ ├── GenericRepository.cs │ │ └── IRepository.cs │ ├── IPersonRepository.cs │ └── Implementattions │ │ └── PersonRepositorympl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_4__Insert_data_in_books.sql │ ├── V1_0_5__Insert_data_in_persons.sql │ └── V1_0_8__Reinsert_data_in_books.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ ├── V1_0_3__Create_table_books.sql │ ├── V1_0_6__Drop_table_books.sql │ └── V1_0_7__Recreate_table_books.sql ├── RestWithASPNETUdemy 10 - Content Negotiation ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IBookBusiness.cs │ ├── IPersonBusiness.cs │ └── Implementattions │ │ ├── BookBusinessImpl.cs │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ ├── BooksController.cs │ └── PersonsController.cs │ ├── Data │ ├── Converter │ │ └── IParser.cs │ ├── Converters │ │ ├── BookConverter.cs │ │ └── PersonConverter.cs │ └── VO │ │ ├── BookVO.cs │ │ └── PersonVO.cs │ ├── Evolve.json │ ├── Model │ ├── Base │ │ └── BaseEntity.cs │ ├── Book.cs │ ├── Context │ │ └── MySQLContext.cs │ └── Person.cs │ ├── Program.cs │ ├── Repository │ ├── Generic │ │ ├── GenericRepository.cs │ │ └── IRepository.cs │ ├── IPersonRepository.cs │ └── Implementattions │ │ └── PersonRepositorympl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_4__Insert_data_in_books.sql │ ├── V1_0_5__Insert_data_in_persons.sql │ └── V1_0_8__Reinsert_data_in_books.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ ├── V1_0_3__Create_table_books.sql │ ├── V1_0_6__Drop_table_books.sql │ └── V1_0_7__Recreate_table_books.sql ├── RestWithASPNETUdemy 11 - HATEOAS ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IBookBusiness.cs │ ├── IPersonBusiness.cs │ └── Implementattions │ │ ├── BookBusinessImpl.cs │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ ├── BooksController.cs │ └── PersonsController.cs │ ├── Data │ ├── Converter │ │ └── IParser.cs │ ├── Converters │ │ ├── BookConverter.cs │ │ └── PersonConverter.cs │ └── VO │ │ ├── BookVO.cs │ │ └── PersonVO.cs │ ├── Evolve.json │ ├── HyperMedia │ ├── BookEnricher.cs │ └── PersonEnricher.cs │ ├── Model │ ├── Base │ │ └── BaseEntity.cs │ ├── Book.cs │ ├── Context │ │ └── MySQLContext.cs │ └── Person.cs │ ├── Program.cs │ ├── Repository │ ├── Generic │ │ ├── GenericRepository.cs │ │ └── IRepository.cs │ ├── IPersonRepository.cs │ └── Implementattions │ │ └── PersonRepositorympl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_4__Insert_data_in_books.sql │ ├── V1_0_5__Insert_data_in_persons.sql │ └── V1_0_8__Reinsert_data_in_books.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ ├── V1_0_3__Create_table_books.sql │ ├── V1_0_6__Drop_table_books.sql │ └── V1_0_7__Recreate_table_books.sql ├── RestWithASPNETUdemy 12 - Swagger ├── PostmanCollections │ ├── ASP_NET_CORE.postman_environment.json │ └── RESTful API With ASP.NET Core 2.0.postman_collection.json ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IBookBusiness.cs │ ├── IPersonBusiness.cs │ └── Implementattions │ │ ├── BookBusinessImpl.cs │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ ├── BooksController.cs │ └── PersonsController.cs │ ├── Data │ ├── Converter │ │ └── IParser.cs │ ├── Converters │ │ ├── BookConverter.cs │ │ └── PersonConverter.cs │ └── VO │ │ ├── BookVO.cs │ │ └── PersonVO.cs │ ├── Evolve.json │ ├── HyperMedia │ ├── BookEnricher.cs │ └── PersonEnricher.cs │ ├── Model │ ├── Base │ │ └── BaseEntity.cs │ ├── Book.cs │ ├── Context │ │ └── MySQLContext.cs │ └── Person.cs │ ├── Program.cs │ ├── Repository │ ├── Generic │ │ ├── GenericRepository.cs │ │ └── IRepository.cs │ ├── IPersonRepository.cs │ └── Implementattions │ │ └── PersonRepositorympl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_4__Insert_data_in_books.sql │ ├── V1_0_5__Insert_data_in_persons.sql │ └── V1_0_8__Reinsert_data_in_books.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ ├── V1_0_3__Create_table_books.sql │ ├── V1_0_6__Drop_table_books.sql │ └── V1_0_7__Recreate_table_books.sql ├── RestWithASPNETUdemy 13 - Authentication ├── PostmanCollections │ ├── ASP_NET_CORE.postman_environment.json │ └── RESTful API With ASP.NET Core 2.0.postman_collection.json ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IBookBusiness.cs │ ├── ILoginBusiness.cs │ ├── IPersonBusiness.cs │ └── Implementattions │ │ ├── BookBusinessImpl.cs │ │ ├── LoginBusinessImpl.cs │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ ├── BooksController.cs │ ├── LoginController.cs │ └── PersonsController.cs │ ├── Data │ ├── Converter │ │ └── IParser.cs │ ├── Converters │ │ ├── BookConverter.cs │ │ ├── PersonConverter.cs │ │ └── UserConverter.cs │ └── VO │ │ ├── BookVO.cs │ │ ├── PersonVO.cs │ │ └── UserVO.cs │ ├── Evolve.json │ ├── HyperMedia │ ├── BookEnricher.cs │ └── PersonEnricher.cs │ ├── Model │ ├── Base │ │ └── BaseEntity.cs │ ├── Book.cs │ ├── Context │ │ └── MySQLContext.cs │ ├── Person.cs │ └── User.cs │ ├── Program.cs │ ├── Repository │ ├── Generic │ │ ├── GenericRepository.cs │ │ └── IRepository.cs │ ├── IUserRepository.cs │ └── Implementattions │ │ └── UserRepositoryImpl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Security │ └── Configuration │ │ ├── SigningConfigurations.cs │ │ └── TokenConfiguration.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_10__Insert_data_in_users.sql │ ├── V1_0_4__Insert_data_in_books.sql │ ├── V1_0_5__Insert_data_in_persons.sql │ └── V1_0_8__Reinsert_data_in_books.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ ├── V1_0_3__Create_table_books.sql │ ├── V1_0_6__Drop_table_books.sql │ ├── V1_0_7__Recreate_table_books.sql │ └── V1_0_9__Create_table_users.sql ├── RestWithASPNETUdemy 14 - PATH Verb And Query Param ├── PostmanCollections │ ├── ASP_NET_CORE.postman_environment.json │ └── RESTful API With ASP.NET Core 2.0.postman_collection.json ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IBookBusiness.cs │ ├── ILoginBusiness.cs │ ├── IPersonBusiness.cs │ └── Implementattions │ │ ├── BookBusinessImpl.cs │ │ ├── LoginBusinessImpl.cs │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ ├── BooksController.cs │ ├── LoginController.cs │ └── PersonsController.cs │ ├── Data │ ├── Converter │ │ └── IParser.cs │ ├── Converters │ │ ├── BookConverter.cs │ │ ├── PersonConverter.cs │ │ └── UserConverter.cs │ └── VO │ │ ├── BookVO.cs │ │ ├── PersonVO.cs │ │ └── UserVO.cs │ ├── Evolve.json │ ├── HyperMedia │ ├── BookEnricher.cs │ └── PersonEnricher.cs │ ├── Model │ ├── Base │ │ └── BaseEntity.cs │ ├── Book.cs │ ├── Context │ │ └── MySQLContext.cs │ ├── Person.cs │ └── User.cs │ ├── Program.cs │ ├── Repository │ ├── Generic │ │ ├── GenericRepository.cs │ │ ├── IPersonRepository.cs │ │ └── IRepository.cs │ ├── IUserRepository.cs │ └── Implementattions │ │ ├── PersonRepositoryImpl.cs │ │ └── UserRepositoryImpl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Security │ └── Configuration │ │ ├── SigningConfigurations.cs │ │ └── TokenConfiguration.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_10__Insert_data_in_users.sql │ ├── V1_0_4__Insert_data_in_books.sql │ ├── V1_0_5__Insert_data_in_persons.sql │ └── V1_0_8__Reinsert_data_in_books.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ ├── V1_0_3__Create_table_books.sql │ ├── V1_0_6__Drop_table_books.sql │ ├── V1_0_7__Recreate_table_books.sql │ └── V1_0_9__Create_table_users.sql ├── RestWithASPNETUdemy 15 - PagedSearch ├── PostmanCollections │ ├── ASP_NET_CORE.postman_environment.json │ └── RESTful API With ASP.NET Core 2.0.postman_collection.json ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IBookBusiness.cs │ ├── ILoginBusiness.cs │ ├── IPersonBusiness.cs │ └── Implementattions │ │ ├── BookBusinessImpl.cs │ │ ├── LoginBusinessImpl.cs │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ ├── BooksController.cs │ ├── LoginController.cs │ └── PersonsController.cs │ ├── Data │ ├── Converter │ │ └── IParser.cs │ ├── Converters │ │ ├── BookConverter.cs │ │ ├── PersonConverter.cs │ │ └── UserConverter.cs │ └── VO │ │ ├── BookVO.cs │ │ ├── PersonVO.cs │ │ └── UserVO.cs │ ├── Evolve.json │ ├── HyperMedia │ ├── BookEnricher.cs │ └── PersonEnricher.cs │ ├── Model │ ├── Base │ │ └── BaseEntity.cs │ ├── Book.cs │ ├── Context │ │ └── MySQLContext.cs │ ├── Person.cs │ └── User.cs │ ├── Program.cs │ ├── Repository │ ├── Generic │ │ ├── GenericRepository.cs │ │ ├── IPersonRepository.cs │ │ └── IRepository.cs │ ├── IUserRepository.cs │ └── Implementattions │ │ ├── PersonRepositoryImpl.cs │ │ └── UserRepositoryImpl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Security │ └── Configuration │ │ ├── SigningConfigurations.cs │ │ └── TokenConfiguration.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_10__Insert_data_in_users.sql │ ├── V1_0_11__Insert_data_in_persons.sql │ ├── V1_0_4__Insert_data_in_books.sql │ ├── V1_0_5__Insert_data_in_persons.sql │ └── V1_0_8__Reinsert_data_in_books.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ ├── V1_0_3__Create_table_books.sql │ ├── V1_0_6__Drop_table_books.sql │ ├── V1_0_7__Recreate_table_books.sql │ └── V1_0_9__Create_table_users.sql ├── RestWithASPNETUdemy 16 - Binary Files ├── PostmanCollections │ ├── ASP_NET_CORE.postman_environment.json │ └── RESTful API With ASP.NET Core 2.0.postman_collection.json ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IBookBusiness.cs │ ├── IFileBusiness.cs │ ├── ILoginBusiness.cs │ ├── IPersonBusiness.cs │ └── Implementattions │ │ ├── BookBusinessImpl.cs │ │ ├── FileBusinessImpl.cs │ │ ├── LoginBusinessImpl.cs │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ ├── BooksController.cs │ ├── FileController.cs │ ├── LoginController.cs │ └── PersonsController.cs │ ├── Data │ ├── Converter │ │ └── IParser.cs │ ├── Converters │ │ ├── BookConverter.cs │ │ ├── PersonConverter.cs │ │ └── UserConverter.cs │ └── VO │ │ ├── BookVO.cs │ │ ├── PersonVO.cs │ │ └── UserVO.cs │ ├── Evolve.json │ ├── HyperMedia │ ├── BookEnricher.cs │ └── PersonEnricher.cs │ ├── Model │ ├── Base │ │ └── BaseEntity.cs │ ├── Book.cs │ ├── Context │ │ └── MySQLContext.cs │ ├── Person.cs │ └── User.cs │ ├── Other │ └── aspnet-life-cycles-events.pdf │ ├── Program.cs │ ├── Repository │ ├── Generic │ │ ├── GenericRepository.cs │ │ ├── IPersonRepository.cs │ │ └── IRepository.cs │ ├── IUserRepository.cs │ └── Implementattions │ │ ├── PersonRepositoryImpl.cs │ │ └── UserRepositoryImpl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Security │ └── Configuration │ │ ├── SigningConfigurations.cs │ │ └── TokenConfiguration.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_10__Insert_data_in_users.sql │ ├── V1_0_11__Insert_data_in_persons.sql │ ├── V1_0_4__Insert_data_in_books.sql │ ├── V1_0_5__Insert_data_in_persons.sql │ └── V1_0_8__Reinsert_data_in_books.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ ├── V1_0_3__Create_table_books.sql │ ├── V1_0_6__Drop_table_books.sql │ ├── V1_0_7__Recreate_table_books.sql │ └── V1_0_9__Create_table_users.sql ├── RestWithASPNETUdemy 17 - Enable Docker ├── .dockerignore ├── PostmanCollections │ ├── ASP_NET_CORE.postman_environment.json │ └── RESTful API With ASP.NET Core 2.0.postman_collection.json ├── RestWithASPNETUdemy.sln ├── RestWithASPNETUdemy │ ├── Business │ │ ├── IBookBusiness.cs │ │ ├── IFileBusiness.cs │ │ ├── ILoginBusiness.cs │ │ ├── IPersonBusiness.cs │ │ └── Implementattions │ │ │ ├── BookBusinessImpl.cs │ │ │ ├── FileBusinessImpl.cs │ │ │ ├── LoginBusinessImpl.cs │ │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ │ ├── BooksController.cs │ │ ├── FileController.cs │ │ ├── LoginController.cs │ │ └── PersonsController.cs │ ├── Data │ │ ├── Converter │ │ │ └── IParser.cs │ │ ├── Converters │ │ │ ├── BookConverter.cs │ │ │ ├── PersonConverter.cs │ │ │ └── UserConverter.cs │ │ └── VO │ │ │ ├── BookVO.cs │ │ │ ├── PersonVO.cs │ │ │ └── UserVO.cs │ ├── Dockerfile │ ├── HyperMedia │ │ ├── BookEnricher.cs │ │ └── PersonEnricher.cs │ ├── Model │ │ ├── Base │ │ │ └── BaseEntity.cs │ │ ├── Book.cs │ │ ├── Context │ │ │ └── MySQLContext.cs │ │ ├── Person.cs │ │ └── User.cs │ ├── Other │ │ └── aspnet-life-cycles-events.pdf │ ├── Program.cs │ ├── Repository │ │ ├── Generic │ │ │ ├── GenericRepository.cs │ │ │ ├── IPersonRepository.cs │ │ │ └── IRepository.cs │ │ ├── IUserRepository.cs │ │ └── Implementattions │ │ │ ├── PersonRepositoryImpl.cs │ │ │ └── UserRepositoryImpl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Security │ │ └── Configuration │ │ │ ├── SigningConfigurations.cs │ │ │ └── TokenConfiguration.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── db │ │ ├── dataset │ │ │ ├── V1_0_10__Insert_data_in_users.sql │ │ │ ├── V1_0_11__Insert_data_in_persons.sql │ │ │ ├── V1_0_4__Insert_data_in_books.sql │ │ │ ├── V1_0_5__Insert_data_in_persons.sql │ │ │ └── V1_0_8__Reinsert_data_in_books.sql │ │ └── migrations │ │ │ ├── V1_0_1__Create_Table_Persons.sql │ │ │ ├── V1_0_2__Alter_Table_Persons.sql │ │ │ ├── V1_0_3__Create_table_books.sql │ │ │ ├── V1_0_6__Drop_table_books.sql │ │ │ ├── V1_0_7__Recreate_table_books.sql │ │ │ └── V1_0_9__Create_table_users.sql │ └── evolve.json ├── docker-compose.dcproj ├── docker-compose.override.yml └── docker-compose.yml ├── RestWithASPNETUdemy 18 - Starting With Dump File ├── .dockerignore ├── DBBackup │ └── backup.sql ├── Dockerfile ├── PostmanCollections │ ├── ASP_NET_CORE.postman_environment.json │ └── RESTful API With ASP.NET Core 2.0.postman_collection.json ├── RestWithASPNETUdemy.sln ├── RestWithASPNETUdemy │ ├── Business │ │ ├── IBookBusiness.cs │ │ ├── IFileBusiness.cs │ │ ├── ILoginBusiness.cs │ │ ├── IPersonBusiness.cs │ │ └── Implementattions │ │ │ ├── BookBusinessImpl.cs │ │ │ ├── FileBusinessImpl.cs │ │ │ ├── LoginBusinessImpl.cs │ │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ │ ├── BooksController.cs │ │ ├── FileController.cs │ │ ├── LoginController.cs │ │ └── PersonsController.cs │ ├── Data │ │ ├── Converter │ │ │ └── IParser.cs │ │ ├── Converters │ │ │ ├── BookConverter.cs │ │ │ ├── PersonConverter.cs │ │ │ └── UserConverter.cs │ │ └── VO │ │ │ ├── BookVO.cs │ │ │ ├── PersonVO.cs │ │ │ └── UserVO.cs │ ├── Dockerfile │ ├── HyperMedia │ │ ├── BookEnricher.cs │ │ └── PersonEnricher.cs │ ├── Model │ │ ├── Base │ │ │ └── BaseEntity.cs │ │ ├── Book.cs │ │ ├── Context │ │ │ └── MySQLContext.cs │ │ ├── Person.cs │ │ └── User.cs │ ├── Other │ │ └── aspnet-life-cycles-events.pdf │ ├── Program.cs │ ├── Repository │ │ ├── Generic │ │ │ ├── GenericRepository.cs │ │ │ ├── IPersonRepository.cs │ │ │ └── IRepository.cs │ │ ├── IUserRepository.cs │ │ └── Implementattions │ │ │ ├── PersonRepositoryImpl.cs │ │ │ └── UserRepositoryImpl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Security │ │ └── Configuration │ │ │ ├── SigningConfigurations.cs │ │ │ └── TokenConfiguration.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── db │ │ ├── Evolve.json │ │ ├── dataset │ │ │ ├── V1_0_10__Insert_data_in_users.sql │ │ │ ├── V1_0_11__Insert_data_in_persons.sql │ │ │ ├── V1_0_4__Insert_data_in_books.sql │ │ │ ├── V1_0_5__Insert_data_in_persons.sql │ │ │ └── V1_0_8__Reinsert_data_in_books.sql │ │ └── migrations │ │ │ ├── V1_0_1__Create_Table_Persons.sql │ │ │ ├── V1_0_2__Alter_Table_Persons.sql │ │ │ ├── V1_0_3__Create_table_books.sql │ │ │ ├── V1_0_6__Drop_table_books.sql │ │ │ ├── V1_0_7__Recreate_table_books.sql │ │ │ └── V1_0_9__Create_table_users.sql │ └── evolve.json ├── docker-compose-with-volumes.yml ├── docker-compose.dcproj └── docker-compose.yml ├── RestWithASPNETUdemy 19 - Bash Script ├── .dockerignore ├── Dockerfile ├── PostmanCollections │ ├── ASP_NET_CORE.postman_environment.json │ └── RESTful API With ASP.NET Core 2.0.postman_collection.json ├── RestWithASPNETUdemy.sln ├── RestWithASPNETUdemy │ ├── Business │ │ ├── IBookBusiness.cs │ │ ├── IFileBusiness.cs │ │ ├── ILoginBusiness.cs │ │ ├── IPersonBusiness.cs │ │ └── Implementattions │ │ │ ├── BookBusinessImpl.cs │ │ │ ├── FileBusinessImpl.cs │ │ │ ├── LoginBusinessImpl.cs │ │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ │ ├── BooksController.cs │ │ ├── FileController.cs │ │ ├── LoginController.cs │ │ └── PersonsController.cs │ ├── Data │ │ ├── Converter │ │ │ └── IParser.cs │ │ ├── Converters │ │ │ ├── BookConverter.cs │ │ │ ├── PersonConverter.cs │ │ │ └── UserConverter.cs │ │ └── VO │ │ │ ├── BookVO.cs │ │ │ ├── PersonVO.cs │ │ │ └── UserVO.cs │ ├── Dockerfile │ ├── HyperMedia │ │ ├── BookEnricher.cs │ │ └── PersonEnricher.cs │ ├── Model │ │ ├── Base │ │ │ └── BaseEntity.cs │ │ ├── Book.cs │ │ ├── Context │ │ │ └── MySQLContext.cs │ │ ├── Person.cs │ │ └── User.cs │ ├── Other │ │ └── aspnet-life-cycles-events.pdf │ ├── Program.cs │ ├── Repository │ │ ├── Generic │ │ │ ├── GenericRepository.cs │ │ │ ├── IPersonRepository.cs │ │ │ └── IRepository.cs │ │ ├── IUserRepository.cs │ │ └── Implementattions │ │ │ ├── PersonRepositoryImpl.cs │ │ │ └── UserRepositoryImpl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Security │ │ └── Configuration │ │ │ ├── SigningConfigurations.cs │ │ │ └── TokenConfiguration.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── ci │ │ └── init_database.sh │ ├── db │ │ ├── dataset │ │ │ ├── V1_0_10__Insert_data_in_users.sql │ │ │ ├── V1_0_11__Insert_data_in_persons.sql │ │ │ ├── V1_0_4__Insert_data_in_books.sql │ │ │ ├── V1_0_5__Insert_data_in_persons.sql │ │ │ └── V1_0_8__Reinsert_data_in_books.sql │ │ └── migrations │ │ │ ├── V1_0_1__Create_Table_Persons.sql │ │ │ ├── V1_0_2__Alter_Table_Persons.sql │ │ │ ├── V1_0_3__Create_table_books.sql │ │ │ ├── V1_0_6__Drop_table_books.sql │ │ │ ├── V1_0_7__Recreate_table_books.sql │ │ │ └── V1_0_9__Create_table_users.sql │ └── evolve.json ├── docker-compose-with-volumes.yml ├── docker-compose.dcproj └── docker-compose.yml ├── RestWithASPNETUdemy 20 - Final Release ├── .dockerignore ├── Dockerfile ├── PostmanCollections │ ├── ASP_NET_CORE.postman_environment.json │ └── RESTful API With ASP.NET Core 2.0.postman_collection.json ├── RestWithASPNETUdemy.sln ├── RestWithASPNETUdemy │ ├── Business │ │ ├── IBookBusiness.cs │ │ ├── IFileBusiness.cs │ │ ├── ILoginBusiness.cs │ │ ├── IPersonBusiness.cs │ │ └── Implementattions │ │ │ ├── BookBusinessImpl.cs │ │ │ ├── FileBusinessImpl.cs │ │ │ ├── LoginBusinessImpl.cs │ │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ │ ├── BooksController.cs │ │ ├── FileController.cs │ │ ├── LoginController.cs │ │ └── PersonsController.cs │ ├── Data │ │ ├── Converter │ │ │ └── IParser.cs │ │ ├── Converters │ │ │ ├── BookConverter.cs │ │ │ ├── PersonConverter.cs │ │ │ └── UserConverter.cs │ │ └── VO │ │ │ ├── BookVO.cs │ │ │ ├── PersonVO.cs │ │ │ └── UserVO.cs │ ├── Dockerfile │ ├── HyperMedia │ │ ├── BookEnricher.cs │ │ └── PersonEnricher.cs │ ├── Migrations.zip │ ├── Model │ │ ├── Base │ │ │ └── BaseEntity.cs │ │ ├── Book.cs │ │ ├── Context │ │ │ └── MySQLContext.cs │ │ ├── Person.cs │ │ └── User.cs │ ├── Other │ │ └── aspnet-life-cycles-events.pdf │ ├── Program.cs │ ├── Repository │ │ ├── Generic │ │ │ ├── GenericRepository.cs │ │ │ ├── IPersonRepository.cs │ │ │ └── IRepository.cs │ │ ├── IUserRepository.cs │ │ └── Implementattions │ │ │ ├── PersonRepositoryImpl.cs │ │ │ └── UserRepositoryImpl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Security │ │ └── Configuration │ │ │ ├── SigningConfigurations.cs │ │ │ └── TokenConfiguration.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── ci │ │ └── init_database.sh │ ├── db │ │ ├── dataset │ │ │ ├── V1_0_10__Insert_data_in_users.sql │ │ │ ├── V1_0_11__Insert_data_in_persons.sql │ │ │ ├── V1_0_4__Insert_data_in_books.sql │ │ │ ├── V1_0_5__Insert_data_in_persons.sql │ │ │ └── V1_0_8__Reinsert_data_in_books.sql │ │ └── migrations │ │ │ ├── V1_0_1__Create_Table_Persons.sql │ │ │ ├── V1_0_2__Alter_Table_Persons.sql │ │ │ ├── V1_0_3__Create_table_books.sql │ │ │ ├── V1_0_6__Drop_table_books.sql │ │ │ ├── V1_0_7__Recreate_table_books.sql │ │ │ └── V1_0_9__Create_table_users.sql │ └── evolve.json ├── docker-compose-with-volumes.yml └── docker-compose.yml ├── RestWithASPNETUdemy 21 - Connecting To Other Databases ├── DataAccessMSSqlProvider │ ├── Context │ │ └── MSSQLContext.cs │ ├── DataAccessMSSqlServerProvider.csproj │ ├── Repository │ │ └── Implementattions │ │ │ └── PersonRepositorympl.cs │ └── sql_database │ │ └── create_database.sql ├── DataAccessMySqlProvider │ ├── Context │ │ └── MySQLContext.cs │ ├── DataAccessMySqlProvider.csproj │ └── Repository │ │ └── Implementattions │ │ └── PersonRepositorympl.cs ├── DataAccessPostgreSqlProvider │ ├── Context │ │ └── PostgreeSQLContext.cs │ ├── DataAccessPostgreSqlProvider.csproj │ ├── Repository │ │ └── Implementattions │ │ │ └── PersonRepositorympl.cs │ └── sql_database │ │ └── create_database.sql ├── DataAccessSqliteProvider │ ├── Context │ │ └── SqliteSQLContext.cs │ ├── DataAccessSqliteProvider.csproj │ └── Repository │ │ └── Implementattions │ │ └── PersonRepositorympl.cs ├── DomainModel │ ├── DomainModel.csproj │ └── Model │ │ ├── Person.cs │ │ └── Repository │ │ └── IPersonRepository.cs ├── README.md ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IPersonBusiness.cs │ └── Implementattions │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ └── PersonsController.cs │ ├── Program.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── db │ └── script.sql │ └── teste.yml └── RestWithASPNETUdemy Extra Sessions ├── RestWithASPNETUdemy Authentication Get User Principal ├── PostmanCollections │ ├── ASP_NET_CORE.postman_environment.json │ └── RESTful API With ASP.NET Core 2.0.postman_collection.json ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy │ ├── Business │ ├── IBookBusiness.cs │ ├── ILoginBusiness.cs │ ├── IPersonBusiness.cs │ └── Implementattions │ │ ├── BookBusinessImpl.cs │ │ ├── LoginBusinessImpl.cs │ │ └── PersonBusinessImpl.cs │ ├── Controllers │ ├── BooksController.cs │ ├── LoginController.cs │ └── PersonsController.cs │ ├── Data │ ├── Converter │ │ └── IParser.cs │ ├── Converters │ │ ├── BookConverter.cs │ │ ├── PersonConverter.cs │ │ └── UserConverter.cs │ └── VO │ │ ├── BookVO.cs │ │ ├── PersonVO.cs │ │ └── UserVO.cs │ ├── Evolve.json │ ├── HyperMedia │ ├── BookEnricher.cs │ └── PersonEnricher.cs │ ├── Model │ ├── Base │ │ └── BaseEntity.cs │ ├── Book.cs │ ├── Context │ │ └── MySQLContext.cs │ ├── Person.cs │ └── User.cs │ ├── Program.cs │ ├── Repository │ ├── Generic │ │ ├── GenericRepository.cs │ │ └── IRepository.cs │ ├── IUserRepository.cs │ └── Implementattions │ │ └── UserRepositoryImpl.cs │ ├── RestWithASPNETUdemy.csproj │ ├── Security │ └── Configuration │ │ ├── SigningConfigurations.cs │ │ └── TokenConfiguration.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── db │ ├── dataset │ ├── V1_0_10__Insert_data_in_users.sql │ ├── V1_0_4__Insert_data_in_books.sql │ ├── V1_0_5__Insert_data_in_persons.sql │ └── V1_0_8__Reinsert_data_in_books.sql │ └── migrations │ ├── V1_0_1__Create_Table_Persons.sql │ ├── V1_0_2__Alter_Table_Persons.sql │ ├── V1_0_3__Create_table_books.sql │ ├── V1_0_6__Drop_table_books.sql │ ├── V1_0_7__Recreate_table_books.sql │ └── V1_0_9__Create_table_users.sql └── RestWithASPNETUdemy HATEOAS Done On The Nail ├── Hypermedia ├── Abstract │ ├── IResponseEnricher.cs │ └── ISupportsHyperMedia.cs ├── Constants │ ├── HttpActionVerb.cs │ ├── RelationType.cs │ └── ResponseTypeFormat.cs ├── Filters │ ├── HyperMediaFilter.cs │ └── HyperMediaFilterOptions.cs ├── HyperMediaLink.cs ├── Hypermedia.csproj ├── ObjectContentResponseEnricher.cs └── Utils │ └── PagedSearchDTO.cs ├── README.md ├── RestWithASPNETUdemy.sln └── RestWithASPNETUdemy ├── Business ├── IBookBusiness.cs ├── IPersonBusiness.cs └── Implementattions │ ├── BookBusinessImpl.cs │ └── PersonBusinessImpl.cs ├── Controllers ├── BooksController.cs └── PersonsController.cs ├── Data ├── Converter │ └── IParser.cs ├── Converters │ ├── BookConverter.cs │ └── PersonConverter.cs └── VO │ ├── BookVO.cs │ └── PersonVO.cs ├── Evolve.json ├── HyperMedia ├── BookEnricher.cs └── PersonEnricher.cs ├── Model ├── Base │ └── BaseEntity.cs ├── Book.cs ├── Context │ └── MySQLContext.cs └── Person.cs ├── Program.cs ├── Repository ├── Generic │ ├── GenericRepository.cs │ └── IRepository.cs ├── IPersonRepository.cs └── Implementattions │ └── PersonRepositorympl.cs ├── RestWithASPNETUdemy.csproj ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json └── db ├── dataset ├── V1_0_4__Insert_data_in_books.sql ├── V1_0_5__Insert_data_in_persons.sql └── V1_0_8__Reinsert_data_in_books.sql └── migrations ├── V1_0_1__Create_Table_Persons.sql ├── V1_0_2__Alter_Table_Persons.sql ├── V1_0_3__Create_table_books.sql ├── V1_0_6__Drop_table_books.sql └── V1_0_7__Recreate_table_books.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/.travis.yml -------------------------------------------------------------------------------- /Documents/Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/Documents/Architecture.png -------------------------------------------------------------------------------- /Documents/Building Modern RESTFul API's With ASP.NET Core - Architectural Overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/Documents/Building Modern RESTFul API's With ASP.NET Core - Architectural Overview.pdf -------------------------------------------------------------------------------- /Documents/Generic Repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/Documents/Generic Repository.png -------------------------------------------------------------------------------- /Documents/HTTP_StatusCodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/Documents/HTTP_StatusCodes.png -------------------------------------------------------------------------------- /Documents/HTTP_StatusCodes_By_Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/Documents/HTTP_StatusCodes_By_Group.png -------------------------------------------------------------------------------- /Documents/Understending RESTFul API's .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/Documents/Understending RESTFul API's .pdf -------------------------------------------------------------------------------- /Documents/VO Pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/Documents/VO Pattern.png -------------------------------------------------------------------------------- /Images/banner_blog_udemy_course_aspnetcore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/Images/banner_blog_udemy_course_aspnetcore.jpg -------------------------------------------------------------------------------- /Images/udemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/Images/udemy.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/README.md -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/.vs/RestWithASPNETUdemy/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/.vs/RestWithASPNETUdemy/v15/.suo -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/.vs/RestWithASPNETUdemy/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/.vs/RestWithASPNETUdemy/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/Properties/launchSettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/bin/Debug/netcoreapp1.1/RestWithASPNETUdemy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/bin/Debug/netcoreapp1.1/RestWithASPNETUdemy.dll -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/bin/Debug/netcoreapp1.1/RestWithASPNETUdemy.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/bin/Debug/netcoreapp1.1/RestWithASPNETUdemy.pdb -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/Debug/netcoreapp1.1/RestWithASPNETUdemy.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 3b4d138f5b5fe1ba0856a9db43dd70542d1c8331 2 | -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/Debug/netcoreapp1.1/RestWithASPNETUdemy.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 436aa016fd3c9706c7629ba7e1449564bae589f6 2 | -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/Debug/netcoreapp1.1/RestWithASPNETUdemy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/Debug/netcoreapp1.1/RestWithASPNETUdemy.dll -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/Debug/netcoreapp1.1/RestWithASPNETUdemy.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/Debug/netcoreapp1.1/RestWithASPNETUdemy.pdb -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/Debug/netcoreapp1.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/Debug/netcoreapp1.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/Debug/netcoreapp1.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/RestWithASPNETUdemy.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/RestWithASPNETUdemy.csproj.nuget.cache -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/RestWithASPNETUdemy.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/RestWithASPNETUdemy.csproj.nuget.g.props -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/RestWithASPNETUdemy.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/RestWithASPNETUdemy.csproj.nuget.g.targets -------------------------------------------------------------------------------- /RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 00 - Scafold/RestWithASPNETUdemy/obj/project.assets.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/.vs/RestWithASPNETUdemy/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/.vs/RestWithASPNETUdemy/v15/.suo -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/.vs/RestWithASPNETUdemy/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/.vs/RestWithASPNETUdemy/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/Controllers/CalculatorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/Controllers/CalculatorController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/Properties/launchSettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 01 - Calculator/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/Services/IPersonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/Services/IPersonService.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/db/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 02 - Using Diferent Verbs/RestWithASPNETUdemy/db/script.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Services/IPersonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Services/IPersonService.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/db/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 03 - Connecting To Database/RestWithASPNETUdemy/db/script.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Services/IPersonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Services/IPersonService.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/db/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 04 - Versioning Endpoints/RestWithASPNETUdemy/db/script.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Repository/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Repository/IPersonRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/db/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 05 - Spliting Logic/RestWithASPNETUdemy/db/script.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 06 - Adding Support To Database Migrations/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 07 - Working With Generic Repository/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Repository/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Repository/IPersonRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 08 - Working With Value Objects/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Repository/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Repository/IPersonRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/migrations/V1_0_1__Create_Table_Persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/migrations/V1_0_1__Create_Table_Persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/migrations/V1_0_7__Recreate_table_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 09 - Data Contract/RestWithASPNETUdemy/db/migrations/V1_0_7__Recreate_table_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Repository/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Repository/IPersonRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 10 - Content Negotiation/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Business/Implementattions/PersonBusinessImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Business/Implementattions/PersonBusinessImpl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Repository/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Repository/IPersonRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Repository/Implementattions/PersonRepositorympl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Repository/Implementattions/PersonRepositorympl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/migrations/V1_0_1__Create_Table_Persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/migrations/V1_0_1__Create_Table_Persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/migrations/V1_0_7__Recreate_table_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 11 - HATEOAS/RestWithASPNETUdemy/db/migrations/V1_0_7__Recreate_table_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/PostmanCollections/ASP_NET_CORE.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/PostmanCollections/ASP_NET_CORE.postman_environment.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Business/Implementattions/PersonBusinessImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Business/Implementattions/PersonBusinessImpl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Repository/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Repository/IPersonRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Repository/Implementattions/PersonRepositorympl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Repository/Implementattions/PersonRepositorympl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/migrations/V1_0_1__Create_Table_Persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/migrations/V1_0_1__Create_Table_Persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/migrations/V1_0_7__Recreate_table_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 12 - Swagger/RestWithASPNETUdemy/db/migrations/V1_0_7__Recreate_table_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/PostmanCollections/ASP_NET_CORE.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/PostmanCollections/ASP_NET_CORE.postman_environment.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Business/ILoginBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Business/ILoginBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Controllers/LoginController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/Converters/UserConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/Converters/UserConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/VO/UserVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Data/VO/UserVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Model/User.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Repository/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Repository/IUserRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Security/Configuration/TokenConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Security/Configuration/TokenConfiguration.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/dataset/V1_0_10__Insert_data_in_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/dataset/V1_0_10__Insert_data_in_users.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/migrations/V1_0_9__Create_table_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 13 - Authentication/RestWithASPNETUdemy/db/migrations/V1_0_9__Create_table_users.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Business/ILoginBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Business/ILoginBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Controllers/LoginController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/Converters/UserConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/Converters/UserConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/VO/UserVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Data/VO/UserVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Model/User.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Repository/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Repository/IUserRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 14 - PATH Verb And Query Param/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/PostmanCollections/ASP_NET_CORE.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/PostmanCollections/ASP_NET_CORE.postman_environment.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/ILoginBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/ILoginBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/Implementattions/LoginBusinessImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/Implementattions/LoginBusinessImpl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/Implementattions/PersonBusinessImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Business/Implementattions/PersonBusinessImpl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Controllers/LoginController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/Converters/UserConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/Converters/UserConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/VO/UserVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Data/VO/UserVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Model/User.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Repository/Generic/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Repository/Generic/IPersonRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Repository/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Repository/IUserRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Security/Configuration/SigningConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Security/Configuration/SigningConfigurations.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Security/Configuration/TokenConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Security/Configuration/TokenConfiguration.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/dataset/V1_0_10__Insert_data_in_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/dataset/V1_0_10__Insert_data_in_users.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/dataset/V1_0_11__Insert_data_in_persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/dataset/V1_0_11__Insert_data_in_persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/migrations/V1_0_9__Create_table_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 15 - PagedSearch/RestWithASPNETUdemy/db/migrations/V1_0_9__Create_table_users.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/PostmanCollections/ASP_NET_CORE.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/PostmanCollections/ASP_NET_CORE.postman_environment.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Business/IFileBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Business/IFileBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Business/ILoginBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Business/ILoginBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Controllers/FileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Controllers/FileController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Controllers/LoginController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/Converters/UserConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/Converters/UserConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/VO/UserVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Data/VO/UserVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Model/User.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Other/aspnet-life-cycles-events.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Other/aspnet-life-cycles-events.pdf -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Repository/Generic/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Repository/Generic/IPersonRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Repository/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Repository/IUserRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Security/Configuration/TokenConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Security/Configuration/TokenConfiguration.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/db/dataset/V1_0_10__Insert_data_in_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/db/dataset/V1_0_10__Insert_data_in_users.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/db/migrations/V1_0_9__Create_table_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 16 - Binary Files/RestWithASPNETUdemy/db/migrations/V1_0_9__Create_table_users.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/.dockerignore -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/PostmanCollections/ASP_NET_CORE.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/PostmanCollections/ASP_NET_CORE.postman_environment.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Business/IFileBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Business/IFileBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Business/ILoginBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Business/ILoginBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Controllers/FileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Controllers/FileController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Controllers/LoginController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/Converters/UserConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/Converters/UserConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/VO/UserVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Data/VO/UserVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Dockerfile -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Model/User.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Other/aspnet-life-cycles-events.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Other/aspnet-life-cycles-events.pdf -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Repository/Generic/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Repository/Generic/IPersonRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Repository/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Repository/IUserRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/RestWithASPNETUdemy/evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/docker-compose.dcproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/docker-compose.override.yml -------------------------------------------------------------------------------- /RestWithASPNETUdemy 17 - Enable Docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 17 - Enable Docker/docker-compose.yml -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/.dockerignore -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/DBBackup/backup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/DBBackup/backup.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/Dockerfile -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Business/IFileBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Business/IFileBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Business/ILoginBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Business/ILoginBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Controllers/FileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Controllers/FileController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Controllers/LoginController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/Converters/UserConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/Converters/UserConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/VO/UserVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Data/VO/UserVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Dockerfile -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Model/User.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Repository/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Repository/IUserRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/db/Evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/db/Evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/RestWithASPNETUdemy/evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/docker-compose-with-volumes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/docker-compose-with-volumes.yml -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/docker-compose.dcproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 18 - Starting With Dump File/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 18 - Starting With Dump File/docker-compose.yml -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/.dockerignore -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/Dockerfile -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/PostmanCollections/ASP_NET_CORE.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/PostmanCollections/ASP_NET_CORE.postman_environment.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/IFileBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/IFileBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/ILoginBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/ILoginBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/Implementattions/BookBusinessImpl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/Implementattions/FileBusinessImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Business/Implementattions/FileBusinessImpl.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Controllers/FileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Controllers/FileController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Controllers/LoginController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/Converters/UserConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/Converters/UserConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/VO/UserVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Data/VO/UserVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Dockerfile -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Model/User.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Other/aspnet-life-cycles-events.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Other/aspnet-life-cycles-events.pdf -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Repository/Generic/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Repository/Generic/IPersonRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Repository/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Repository/IUserRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Security/Configuration/TokenConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Security/Configuration/TokenConfiguration.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/ci/init_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/ci/init_database.sh -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/dataset/V1_0_10__Insert_data_in_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/dataset/V1_0_10__Insert_data_in_users.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/dataset/V1_0_5__Insert_data_in_persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/dataset/V1_0_8__Reinsert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/migrations/V1_0_2__Alter_Table_Persons.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/migrations/V1_0_3__Create_table_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/migrations/V1_0_9__Create_table_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/db/migrations/V1_0_9__Create_table_users.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/RestWithASPNETUdemy/evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/docker-compose-with-volumes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/docker-compose-with-volumes.yml -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/docker-compose.dcproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 19 - Bash Script/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 19 - Bash Script/docker-compose.yml -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/.dockerignore -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/Dockerfile -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/PostmanCollections/ASP_NET_CORE.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/PostmanCollections/ASP_NET_CORE.postman_environment.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Business/IBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Business/IBookBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Business/IFileBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Business/IFileBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Business/ILoginBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Business/ILoginBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Controllers/BooksController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Controllers/FileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Controllers/FileController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Controllers/LoginController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Controllers/PersonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Controllers/PersonsController.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/Converter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/Converter/IParser.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/Converters/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/Converters/BookConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/Converters/PersonConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/Converters/UserConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/Converters/UserConverter.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/VO/BookVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/VO/BookVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/VO/PersonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/VO/PersonVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/VO/UserVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Data/VO/UserVO.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Dockerfile -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/HyperMedia/BookEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/HyperMedia/PersonEnricher.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Migrations.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Migrations.zip -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Model/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Model/Base/BaseEntity.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Model/Book.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Model/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Model/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Model/User.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Other/aspnet-life-cycles-events.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Other/aspnet-life-cycles-events.pdf -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Repository/Generic/GenericRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Repository/Generic/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Repository/Generic/IPersonRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Repository/Generic/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Repository/Generic/IRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Repository/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Repository/IUserRepository.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/appsettings.Development.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/ci/init_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/ci/init_database.sh -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/db/dataset/V1_0_4__Insert_data_in_books.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/evolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/RestWithASPNETUdemy/evolve.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/docker-compose-with-volumes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/docker-compose-with-volumes.yml -------------------------------------------------------------------------------- /RestWithASPNETUdemy 20 - Final Release/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 20 - Final Release/docker-compose.yml -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/DataAccessMSSqlProvider/Context/MSSQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/DataAccessMSSqlProvider/Context/MSSQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/DataAccessMySqlProvider/Context/MySQLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/DataAccessMySqlProvider/Context/MySQLContext.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/DomainModel/DomainModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/DomainModel/DomainModel.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/DomainModel/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/DomainModel/Model/Person.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/README.md: -------------------------------------------------------------------------------- 1 | http://localhost:{port}/api/persons/v1 -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy.sln -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/Business/IPersonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/Business/IPersonBusiness.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/Program.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/RestWithASPNETUdemy.csproj -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/Startup.cs -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/appsettings.json -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/db/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/db/script.sql -------------------------------------------------------------------------------- /RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/teste.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandrocgsi/RestWithASP-NETUdemy/HEAD/RestWithASPNETUdemy 21 - Connecting To Other Databases/RestWithASPNETUdemy/teste.yml -------------------------------------------------------------------------------- /RestWithASPNETUdemy Extra Sessions/RestWithASPNETUdemy Authentication Get User Principal/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; -------------------------------------------------------------------------------- /RestWithASPNETUdemy Extra Sessions/RestWithASPNETUdemy HATEOAS Done On The Nail/README.md: -------------------------------------------------------------------------------- 1 | Waiting for a quick description 2 | -------------------------------------------------------------------------------- /RestWithASPNETUdemy Extra Sessions/RestWithASPNETUdemy HATEOAS Done On The Nail/RestWithASPNETUdemy/db/migrations/V1_0_6__Drop_table_books.sql: -------------------------------------------------------------------------------- 1 | drop table `books`; --------------------------------------------------------------------------------