├── .gitignore ├── CRUD-NETCore-TDD.Infra ├── CRUD-NETCore-TDD.Infra.csproj ├── Models │ └── User.cs ├── Repositories │ ├── MyContext.cs │ └── UserRepository.cs └── Validations │ └── PostUserValidator.cs ├── CRUD-NETCore-TDD.Test ├── CRUD-NETCore-TDD.Test.csproj └── Tests │ ├── BaseTest.cs │ └── PostUserTest.cs ├── CRUD-NETCore-TDD ├── CRUD-NETCore-TDD.csproj ├── CRUD-NETCore-TDD.csproj.user ├── CRUD-NETCore-TDD.sln ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json └── appsettings.json ├── README.md └── docs ├── print01.JPG ├── print02.JPG ├── print03.JPG ├── print04.JPG ├── print05.JPG ├── print06.JPG ├── print07.JPG ├── print08.JPG ├── print09.JPG ├── print10.JPG ├── print11.JPG ├── print12.JPG ├── print13.JPG ├── print14.JPG └── titulo.JPG /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/.gitignore -------------------------------------------------------------------------------- /CRUD-NETCore-TDD.Infra/CRUD-NETCore-TDD.Infra.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD.Infra/CRUD-NETCore-TDD.Infra.csproj -------------------------------------------------------------------------------- /CRUD-NETCore-TDD.Infra/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD.Infra/Models/User.cs -------------------------------------------------------------------------------- /CRUD-NETCore-TDD.Infra/Repositories/MyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD.Infra/Repositories/MyContext.cs -------------------------------------------------------------------------------- /CRUD-NETCore-TDD.Infra/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD.Infra/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /CRUD-NETCore-TDD.Infra/Validations/PostUserValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD.Infra/Validations/PostUserValidator.cs -------------------------------------------------------------------------------- /CRUD-NETCore-TDD.Test/CRUD-NETCore-TDD.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD.Test/CRUD-NETCore-TDD.Test.csproj -------------------------------------------------------------------------------- /CRUD-NETCore-TDD.Test/Tests/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD.Test/Tests/BaseTest.cs -------------------------------------------------------------------------------- /CRUD-NETCore-TDD.Test/Tests/PostUserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD.Test/Tests/PostUserTest.cs -------------------------------------------------------------------------------- /CRUD-NETCore-TDD/CRUD-NETCore-TDD.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD/CRUD-NETCore-TDD.csproj -------------------------------------------------------------------------------- /CRUD-NETCore-TDD/CRUD-NETCore-TDD.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD/CRUD-NETCore-TDD.csproj.user -------------------------------------------------------------------------------- /CRUD-NETCore-TDD/CRUD-NETCore-TDD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD/CRUD-NETCore-TDD.sln -------------------------------------------------------------------------------- /CRUD-NETCore-TDD/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD/Program.cs -------------------------------------------------------------------------------- /CRUD-NETCore-TDD/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD/Properties/launchSettings.json -------------------------------------------------------------------------------- /CRUD-NETCore-TDD/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD/Startup.cs -------------------------------------------------------------------------------- /CRUD-NETCore-TDD/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD/appsettings.Development.json -------------------------------------------------------------------------------- /CRUD-NETCore-TDD/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/CRUD-NETCore-TDD/appsettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/README.md -------------------------------------------------------------------------------- /docs/print01.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print01.JPG -------------------------------------------------------------------------------- /docs/print02.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print02.JPG -------------------------------------------------------------------------------- /docs/print03.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print03.JPG -------------------------------------------------------------------------------- /docs/print04.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print04.JPG -------------------------------------------------------------------------------- /docs/print05.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print05.JPG -------------------------------------------------------------------------------- /docs/print06.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print06.JPG -------------------------------------------------------------------------------- /docs/print07.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print07.JPG -------------------------------------------------------------------------------- /docs/print08.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print08.JPG -------------------------------------------------------------------------------- /docs/print09.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print09.JPG -------------------------------------------------------------------------------- /docs/print10.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print10.JPG -------------------------------------------------------------------------------- /docs/print11.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print11.JPG -------------------------------------------------------------------------------- /docs/print12.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print12.JPG -------------------------------------------------------------------------------- /docs/print13.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print13.JPG -------------------------------------------------------------------------------- /docs/print14.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/print14.JPG -------------------------------------------------------------------------------- /docs/titulo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianopereira86/CRUD-NetCore-TDD/HEAD/docs/titulo.JPG --------------------------------------------------------------------------------