├── .gitattributes ├── .gitignore ├── EmprestimoLivrosNovo.API ├── .config │ └── dotnet-tools.json ├── Controllers │ ├── ClienteController.cs │ ├── EmprestimoController.cs │ ├── FallbackController.cs │ ├── LivroController.cs │ ├── LivroEmprestadoController.cs │ ├── SistemaController.cs │ └── UsuarioController.cs ├── EmprestimoLivrosNovo.API.csproj ├── Errors │ └── ApiException.cs ├── Extensions │ └── HttpExtensions.cs ├── Middleware │ └── ExceptionMiddleware.cs ├── Models │ ├── FiltroCliente.cs │ ├── FiltroEmprestimo.cs │ ├── FiltroLivro.cs │ ├── FiltroUsuario.cs │ ├── LoginModel.cs │ ├── PaginationHeader.cs │ ├── PaginationParams.cs │ ├── PesquisaTermo.cs │ └── UserToken.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── favicon.ico │ ├── index.html │ ├── main-PF6KMOHJ.js │ ├── media │ ├── fontawesome-webfont-3KIJVIEY.svg │ ├── fontawesome-webfont-5GKVPAEF.woff2 │ ├── fontawesome-webfont-FMJ3VJ65.eot │ ├── fontawesome-webfont-RJ6LE7IU.ttf │ └── fontawesome-webfont-Z4ARLA73.woff │ ├── polyfills-LZBJRJJE.js │ ├── scripts-4QMZZS7N.js │ └── styles-D4NLS5UD.css ├── EmprestimoLivrosNovo.Application ├── DTOs │ ├── ClienteDTO.cs │ ├── EmprestimoDTO.cs │ ├── EmprestimoPostDTO.cs │ ├── EmprestimoPutDTO.cs │ ├── LivroDTO.cs │ ├── LivroEmprestadoDTO.cs │ ├── QuantidadeItensDTO.cs │ ├── UsuarioDTO.cs │ └── UsuarioPutDTO.cs ├── EmprestimoLivrosNovo.Application.csproj ├── Interfaces │ ├── IClienteService.cs │ ├── IEmprestimoService.cs │ ├── ILivroEmprestadoService.cs │ ├── ILivroService.cs │ ├── ISistemaService.cs │ └── IUsuarioService.cs ├── Mappings │ └── DomainToDTOMappingProfile.cs └── Services │ ├── ClienteService.cs │ ├── EmprestimoService.cs │ ├── LivroEmprestadoService.cs │ ├── LivroService.cs │ ├── SistemaService.cs │ └── UsuarioService.cs ├── EmprestimoLivrosNovo.Domain ├── Account │ └── IAuthenticate.cs ├── EmprestimoLivrosNovo.Domain.csproj ├── Entities │ ├── Cliente.cs │ ├── Emprestimo.cs │ ├── Livro.cs │ ├── LivroEmprestado.cs │ └── Usuario.cs ├── Interfaces │ ├── IClienteRepository.cs │ ├── IEmprestimoRepository.cs │ ├── ILivroEmprestadoRepository.cs │ ├── ILivroRepository.cs │ ├── ISistemaRepository.cs │ └── IUsuarioRepository.cs ├── Pagination │ └── PagedList.cs ├── SystemModels │ └── QuantidadeItens.cs └── Validation │ └── DomainExceptionValidation.cs ├── EmprestimoLivrosNovo.Infra.Data ├── Context │ └── ApplicationDbContext.cs ├── EmprestimoLivrosNovo.Infra.Data.csproj ├── EntitiesConfiguration │ ├── ClienteConfiguration.cs │ ├── EmprestimoConfiguration.cs │ ├── LivroConfiguration.cs │ ├── LivroEmprestadoConfiguration.cs │ └── UsuarioConfiguration.cs ├── Helpers │ └── PaginationHelper.cs ├── Identity │ └── AuthenticateService.cs └── Repositories │ ├── ClienteRepository.cs │ ├── EmprestimoRepository.cs │ ├── LivroEmprestadoRepository.cs │ ├── LivroRepository.cs │ ├── SistemaRepository.cs │ └── UsuarioRepository.cs ├── EmprestimoLivrosNovo.Infra.Ioc ├── ClaimsPrincipalExtension.cs ├── DependecyInjection.cs ├── DependencyInjectionSwagger.cs ├── EmprestimoLivrosNovo.Infra.Ioc.csproj └── Properties │ └── launchSettings.json ├── EmprestimoLivrosNovo.sln ├── GeraClasses ├── Controllers │ └── WeatherForecastController.cs ├── GeraClasses.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json ├── LICENSE.txt ├── README.md └── gerarClasses ├── Controllers └── WeatherForecastController.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json └── gerarClasses.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/.gitignore -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/.config/dotnet-tools.json -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Controllers/ClienteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Controllers/ClienteController.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Controllers/EmprestimoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Controllers/EmprestimoController.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Controllers/FallbackController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Controllers/FallbackController.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Controllers/LivroController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Controllers/LivroController.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Controllers/LivroEmprestadoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Controllers/LivroEmprestadoController.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Controllers/SistemaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Controllers/SistemaController.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Controllers/UsuarioController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Controllers/UsuarioController.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/EmprestimoLivrosNovo.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/EmprestimoLivrosNovo.API.csproj -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Errors/ApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Errors/ApiException.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Extensions/HttpExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Extensions/HttpExtensions.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Middleware/ExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Middleware/ExceptionMiddleware.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Models/FiltroCliente.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Models/FiltroCliente.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Models/FiltroEmprestimo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Models/FiltroEmprestimo.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Models/FiltroLivro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Models/FiltroLivro.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Models/FiltroUsuario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Models/FiltroUsuario.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Models/LoginModel.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Models/PaginationHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Models/PaginationHeader.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Models/PaginationParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Models/PaginationParams.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Models/PesquisaTermo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Models/PesquisaTermo.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Models/UserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Models/UserToken.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Program.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/Startup.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/WeatherForecast.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/appsettings.Development.json -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/appsettings.json -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/wwwroot/favicon.ico -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/wwwroot/index.html -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/wwwroot/main-PF6KMOHJ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/wwwroot/main-PF6KMOHJ.js -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/wwwroot/media/fontawesome-webfont-3KIJVIEY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/wwwroot/media/fontawesome-webfont-3KIJVIEY.svg -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/wwwroot/media/fontawesome-webfont-5GKVPAEF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/wwwroot/media/fontawesome-webfont-5GKVPAEF.woff2 -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/wwwroot/media/fontawesome-webfont-FMJ3VJ65.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/wwwroot/media/fontawesome-webfont-FMJ3VJ65.eot -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/wwwroot/media/fontawesome-webfont-RJ6LE7IU.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/wwwroot/media/fontawesome-webfont-RJ6LE7IU.ttf -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/wwwroot/media/fontawesome-webfont-Z4ARLA73.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/wwwroot/media/fontawesome-webfont-Z4ARLA73.woff -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/wwwroot/polyfills-LZBJRJJE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/wwwroot/polyfills-LZBJRJJE.js -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/wwwroot/scripts-4QMZZS7N.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/wwwroot/scripts-4QMZZS7N.js -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.API/wwwroot/styles-D4NLS5UD.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.API/wwwroot/styles-D4NLS5UD.css -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/DTOs/ClienteDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/DTOs/ClienteDTO.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/DTOs/EmprestimoDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/DTOs/EmprestimoDTO.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/DTOs/EmprestimoPostDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/DTOs/EmprestimoPostDTO.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/DTOs/EmprestimoPutDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/DTOs/EmprestimoPutDTO.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/DTOs/LivroDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/DTOs/LivroDTO.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/DTOs/LivroEmprestadoDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/DTOs/LivroEmprestadoDTO.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/DTOs/QuantidadeItensDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/DTOs/QuantidadeItensDTO.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/DTOs/UsuarioDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/DTOs/UsuarioDTO.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/DTOs/UsuarioPutDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/DTOs/UsuarioPutDTO.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/EmprestimoLivrosNovo.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/EmprestimoLivrosNovo.Application.csproj -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Interfaces/IClienteService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Interfaces/IClienteService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Interfaces/IEmprestimoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Interfaces/IEmprestimoService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Interfaces/ILivroEmprestadoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Interfaces/ILivroEmprestadoService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Interfaces/ILivroService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Interfaces/ILivroService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Interfaces/ISistemaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Interfaces/ISistemaService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Interfaces/IUsuarioService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Interfaces/IUsuarioService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Mappings/DomainToDTOMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Mappings/DomainToDTOMappingProfile.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Services/ClienteService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Services/ClienteService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Services/EmprestimoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Services/EmprestimoService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Services/LivroEmprestadoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Services/LivroEmprestadoService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Services/LivroService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Services/LivroService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Services/SistemaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Services/SistemaService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Application/Services/UsuarioService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Application/Services/UsuarioService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Account/IAuthenticate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Account/IAuthenticate.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/EmprestimoLivrosNovo.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/EmprestimoLivrosNovo.Domain.csproj -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Entities/Cliente.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Entities/Cliente.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Entities/Emprestimo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Entities/Emprestimo.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Entities/Livro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Entities/Livro.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Entities/LivroEmprestado.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Entities/LivroEmprestado.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Entities/Usuario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Entities/Usuario.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Interfaces/IClienteRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Interfaces/IClienteRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Interfaces/IEmprestimoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Interfaces/IEmprestimoRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Interfaces/ILivroEmprestadoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Interfaces/ILivroEmprestadoRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Interfaces/ILivroRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Interfaces/ILivroRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Interfaces/ISistemaRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Interfaces/ISistemaRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Interfaces/IUsuarioRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Interfaces/IUsuarioRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Pagination/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Pagination/PagedList.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/SystemModels/QuantidadeItens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/SystemModels/QuantidadeItens.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Domain/Validation/DomainExceptionValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Domain/Validation/DomainExceptionValidation.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/Context/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/Context/ApplicationDbContext.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/EmprestimoLivrosNovo.Infra.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/EmprestimoLivrosNovo.Infra.Data.csproj -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/EntitiesConfiguration/ClienteConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/EntitiesConfiguration/ClienteConfiguration.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/EntitiesConfiguration/EmprestimoConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/EntitiesConfiguration/EmprestimoConfiguration.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/EntitiesConfiguration/LivroConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/EntitiesConfiguration/LivroConfiguration.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/EntitiesConfiguration/LivroEmprestadoConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/EntitiesConfiguration/LivroEmprestadoConfiguration.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/EntitiesConfiguration/UsuarioConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/EntitiesConfiguration/UsuarioConfiguration.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/Helpers/PaginationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/Helpers/PaginationHelper.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/Identity/AuthenticateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/Identity/AuthenticateService.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/Repositories/ClienteRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/Repositories/ClienteRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/Repositories/EmprestimoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/Repositories/EmprestimoRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/Repositories/LivroEmprestadoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/Repositories/LivroEmprestadoRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/Repositories/LivroRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/Repositories/LivroRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/Repositories/SistemaRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/Repositories/SistemaRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Data/Repositories/UsuarioRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Data/Repositories/UsuarioRepository.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Ioc/ClaimsPrincipalExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Ioc/ClaimsPrincipalExtension.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Ioc/DependecyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Ioc/DependecyInjection.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Ioc/DependencyInjectionSwagger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Ioc/DependencyInjectionSwagger.cs -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Ioc/EmprestimoLivrosNovo.Infra.Ioc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Ioc/EmprestimoLivrosNovo.Infra.Ioc.csproj -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.Infra.Ioc/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.Infra.Ioc/Properties/launchSettings.json -------------------------------------------------------------------------------- /EmprestimoLivrosNovo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/EmprestimoLivrosNovo.sln -------------------------------------------------------------------------------- /GeraClasses/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/GeraClasses/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /GeraClasses/GeraClasses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/GeraClasses/GeraClasses.csproj -------------------------------------------------------------------------------- /GeraClasses/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/GeraClasses/Program.cs -------------------------------------------------------------------------------- /GeraClasses/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/GeraClasses/Properties/launchSettings.json -------------------------------------------------------------------------------- /GeraClasses/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/GeraClasses/Startup.cs -------------------------------------------------------------------------------- /GeraClasses/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/GeraClasses/WeatherForecast.cs -------------------------------------------------------------------------------- /GeraClasses/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/GeraClasses/appsettings.Development.json -------------------------------------------------------------------------------- /GeraClasses/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/GeraClasses/appsettings.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/README.md -------------------------------------------------------------------------------- /gerarClasses/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/gerarClasses/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /gerarClasses/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/gerarClasses/Program.cs -------------------------------------------------------------------------------- /gerarClasses/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/gerarClasses/Properties/launchSettings.json -------------------------------------------------------------------------------- /gerarClasses/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/gerarClasses/Startup.cs -------------------------------------------------------------------------------- /gerarClasses/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/gerarClasses/WeatherForecast.cs -------------------------------------------------------------------------------- /gerarClasses/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/gerarClasses/appsettings.Development.json -------------------------------------------------------------------------------- /gerarClasses/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/gerarClasses/appsettings.json -------------------------------------------------------------------------------- /gerarClasses/gerarClasses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtrycatch/EmprestimoLivroCafecombug/HEAD/gerarClasses/gerarClasses.csproj --------------------------------------------------------------------------------