├── .gitignore ├── Configurations └── FilterConfig.cs ├── Controllers ├── IngressoController.cs ├── LoginController.cs └── MessageController.cs ├── DTOs ├── IngressoDTO.cs └── LoginDTO.cs ├── Filters ├── ActionFilter.cs ├── AuthorizationFilter.cs └── ExceptionFilter.cs ├── Images ├── ComunicaçãoServiceBus.png ├── CosmosDbConsumindo.png ├── GetMenssageBus.png ├── PostRequest.png ├── RequestTokenJwt.png └── unitTests.png ├── IngressosAPI.csproj ├── IngressosAPI.csproj.user ├── Interfaces ├── IIngressoRepository.cs ├── IIngressoService.cs ├── IMessageServiceBusConsumerService.cs └── IServiceBusService.cs ├── Models └── IngressoEntity.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Protos └── ingressos.proto ├── README.md ├── Repositories └── IngressoRepository.cs ├── Services ├── AzureServiceBusService.cs ├── GrpcIngressoService.cs ├── IngressoService.cs └── MessageServiceBusConsumerService.cs ├── bin └── Debug │ └── net6.0 │ ├── Azure.Core.Amqp.dll │ ├── Azure.Core.dll │ ├── Azure.Messaging.ServiceBus.dll │ ├── Cosmos.CRTCompat.dll │ ├── Google.Protobuf.dll │ ├── Grpc.AspNetCore.Server.ClientFactory.dll │ ├── Grpc.AspNetCore.Server.dll │ ├── Grpc.Core.Api.dll │ ├── Grpc.Net.Client.dll │ ├── Grpc.Net.ClientFactory.dll │ ├── Grpc.Net.Common.dll │ ├── IngressosAPI.deps.json │ ├── IngressosAPI.dll │ ├── IngressosAPI.exe │ ├── IngressosAPI.pdb │ ├── IngressosAPI.runtimeconfig.json │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ ├── Microsoft.Azure.Amqp.dll │ ├── Microsoft.Azure.Cosmos.Client.dll │ ├── Microsoft.Azure.Cosmos.Core.dll │ ├── Microsoft.Azure.Cosmos.Direct.dll │ ├── Microsoft.Azure.Cosmos.Serialization.HybridRow.dll │ ├── Microsoft.Azure.Cosmos.ServiceInterop.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Bcl.HashCode.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ ├── Microsoft.Extensions.Configuration.dll │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ ├── Microsoft.IdentityModel.Protocols.dll │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.OpenApi.dll │ ├── Microsoft.Win32.SystemEvents.dll │ ├── Newtonsoft.Json.dll │ ├── Swashbuckle.AspNetCore.Swagger.dll │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ ├── System.ClientModel.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Diagnostics.DiagnosticSource.dll │ ├── System.Drawing.Common.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.Memory.Data.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── System.Security.Permissions.dll │ ├── System.Text.Json.dll │ ├── System.Windows.Extensions.dll │ ├── msvcp140.dll │ ├── runtimes │ ├── unix │ │ └── lib │ │ │ └── net6.0 │ │ │ └── System.Drawing.Common.dll │ ├── win-x64 │ │ └── native │ │ │ ├── Cosmos.CRTCompat.dll │ │ │ ├── Microsoft.Azure.Cosmos.ServiceInterop.dll │ │ │ ├── msvcp140.dll │ │ │ ├── vcruntime140.dll │ │ │ └── vcruntime140_1.dll │ └── win │ │ └── lib │ │ └── net6.0 │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ ├── System.Drawing.Common.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ └── System.Windows.Extensions.dll │ ├── vcruntime140.dll │ └── vcruntime140_1.dll └── obj ├── Debug └── net6.0 │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ ├── 12fbc7ffe642ca7e_ingressos.protodep │ ├── ApiEndpoints.json │ ├── Ingresso.F668609D.Up2Date │ ├── IngressosAPI.GeneratedMSBuildEditorConfig.editorconfig │ ├── IngressosAPI.GlobalUsings.g.cs │ ├── IngressosAPI.MvcApplicationPartsAssemblyInfo.cache │ ├── IngressosAPI.MvcApplicationPartsAssemblyInfo.cs │ ├── IngressosAPI.assets.cache │ ├── IngressosAPI.csproj.AssemblyReference.cache │ ├── IngressosAPI.csproj.BuildWithSkipAnalyzers │ ├── IngressosAPI.csproj.CoreCompileInputs.cache │ ├── IngressosAPI.csproj.FileListAbsolute.txt │ ├── IngressosAPI.dll │ ├── IngressosAPI.genruntimeconfig.cache │ ├── IngressosAPI.pdb │ ├── Protos │ ├── Ingressos.cs │ └── IngressosGrpc.cs │ ├── apphost.exe │ ├── ref │ └── IngressosAPI.dll │ ├── refint │ └── IngressosAPI.dll │ ├── staticwebassets.build.json │ └── staticwebassets │ ├── msbuild.build.IngressosAPI.props │ ├── msbuild.buildMultiTargeting.IngressosAPI.props │ └── msbuild.buildTransitive.IngressosAPI.props ├── IngressosAPI.csproj.nuget.dgspec.json ├── IngressosAPI.csproj.nuget.g.props ├── IngressosAPI.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /Configurations/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Configurations/FilterConfig.cs -------------------------------------------------------------------------------- /Controllers/IngressoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Controllers/IngressoController.cs -------------------------------------------------------------------------------- /Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Controllers/LoginController.cs -------------------------------------------------------------------------------- /Controllers/MessageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Controllers/MessageController.cs -------------------------------------------------------------------------------- /DTOs/IngressoDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/DTOs/IngressoDTO.cs -------------------------------------------------------------------------------- /DTOs/LoginDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/DTOs/LoginDTO.cs -------------------------------------------------------------------------------- /Filters/ActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Filters/ActionFilter.cs -------------------------------------------------------------------------------- /Filters/AuthorizationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Filters/AuthorizationFilter.cs -------------------------------------------------------------------------------- /Filters/ExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Filters/ExceptionFilter.cs -------------------------------------------------------------------------------- /Images/ComunicaçãoServiceBus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Images/ComunicaçãoServiceBus.png -------------------------------------------------------------------------------- /Images/CosmosDbConsumindo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Images/CosmosDbConsumindo.png -------------------------------------------------------------------------------- /Images/GetMenssageBus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Images/GetMenssageBus.png -------------------------------------------------------------------------------- /Images/PostRequest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Images/PostRequest.png -------------------------------------------------------------------------------- /Images/RequestTokenJwt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Images/RequestTokenJwt.png -------------------------------------------------------------------------------- /Images/unitTests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Images/unitTests.png -------------------------------------------------------------------------------- /IngressosAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/IngressosAPI.csproj -------------------------------------------------------------------------------- /IngressosAPI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/IngressosAPI.csproj.user -------------------------------------------------------------------------------- /Interfaces/IIngressoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Interfaces/IIngressoRepository.cs -------------------------------------------------------------------------------- /Interfaces/IIngressoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Interfaces/IIngressoService.cs -------------------------------------------------------------------------------- /Interfaces/IMessageServiceBusConsumerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Interfaces/IMessageServiceBusConsumerService.cs -------------------------------------------------------------------------------- /Interfaces/IServiceBusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Interfaces/IServiceBusService.cs -------------------------------------------------------------------------------- /Models/IngressoEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Models/IngressoEntity.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /Protos/ingressos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Protos/ingressos.proto -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/README.md -------------------------------------------------------------------------------- /Repositories/IngressoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Repositories/IngressoRepository.cs -------------------------------------------------------------------------------- /Services/AzureServiceBusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Services/AzureServiceBusService.cs -------------------------------------------------------------------------------- /Services/GrpcIngressoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Services/GrpcIngressoService.cs -------------------------------------------------------------------------------- /Services/IngressoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Services/IngressoService.cs -------------------------------------------------------------------------------- /Services/MessageServiceBusConsumerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/Services/MessageServiceBusConsumerService.cs -------------------------------------------------------------------------------- /bin/Debug/net6.0/Azure.Core.Amqp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Azure.Core.Amqp.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Azure.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Azure.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Azure.Messaging.ServiceBus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Azure.Messaging.ServiceBus.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Cosmos.CRTCompat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Cosmos.CRTCompat.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Google.Protobuf.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Grpc.AspNetCore.Server.ClientFactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Grpc.AspNetCore.Server.ClientFactory.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Grpc.AspNetCore.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Grpc.AspNetCore.Server.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Grpc.Core.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Grpc.Core.Api.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Grpc.Net.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Grpc.Net.Client.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Grpc.Net.ClientFactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Grpc.Net.ClientFactory.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Grpc.Net.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Grpc.Net.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/IngressosAPI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/IngressosAPI.deps.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/IngressosAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/IngressosAPI.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/IngressosAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/IngressosAPI.exe -------------------------------------------------------------------------------- /bin/Debug/net6.0/IngressosAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/IngressosAPI.pdb -------------------------------------------------------------------------------- /bin/Debug/net6.0/IngressosAPI.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/IngressosAPI.runtimeconfig.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Azure.Amqp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Azure.Amqp.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Azure.Cosmos.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Azure.Cosmos.Client.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Azure.Cosmos.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Azure.Cosmos.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Azure.Cosmos.Direct.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Azure.Cosmos.Direct.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Azure.Cosmos.Serialization.HybridRow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Azure.Cosmos.Serialization.HybridRow.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Azure.Cosmos.ServiceInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Azure.Cosmos.ServiceInterop.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Bcl.HashCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Bcl.HashCode.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.ClientModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/System.ClientModel.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Memory.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/System.Memory.Data.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/System.Text.Json.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/msvcp140.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-x64/native/Cosmos.CRTCompat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/runtimes/win-x64/native/Cosmos.CRTCompat.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Azure.Cosmos.ServiceInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Azure.Cosmos.ServiceInterop.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-x64/native/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/runtimes/win-x64/native/msvcp140.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-x64/native/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/runtimes/win-x64/native/vcruntime140.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-x64/native/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/runtimes/win-x64/native/vcruntime140_1.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/vcruntime140.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/bin/Debug/net6.0/vcruntime140_1.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/12fbc7ffe642ca7e_ingressos.protodep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/12fbc7ffe642ca7e_ingressos.protodep -------------------------------------------------------------------------------- /obj/Debug/net6.0/ApiEndpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/ApiEndpoints.json -------------------------------------------------------------------------------- /obj/Debug/net6.0/Ingresso.F668609D.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/IngressosAPI.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/IngressosAPI.GlobalUsings.g.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/IngressosAPI.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/IngressosAPI.assets.cache -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/IngressosAPI.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/IngressosAPI.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/IngressosAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/IngressosAPI.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/IngressosAPI.genruntimeconfig.cache -------------------------------------------------------------------------------- /obj/Debug/net6.0/IngressosAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/IngressosAPI.pdb -------------------------------------------------------------------------------- /obj/Debug/net6.0/Protos/Ingressos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/Protos/Ingressos.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/Protos/IngressosGrpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/Protos/IngressosGrpc.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /obj/Debug/net6.0/ref/IngressosAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/ref/IngressosAPI.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/refint/IngressosAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/refint/IngressosAPI.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/staticwebassets.build.json -------------------------------------------------------------------------------- /obj/Debug/net6.0/staticwebassets/msbuild.build.IngressosAPI.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/staticwebassets/msbuild.build.IngressosAPI.props -------------------------------------------------------------------------------- /obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.IngressosAPI.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.IngressosAPI.props -------------------------------------------------------------------------------- /obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.IngressosAPI.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.IngressosAPI.props -------------------------------------------------------------------------------- /obj/IngressosAPI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/IngressosAPI.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /obj/IngressosAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/IngressosAPI.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/IngressosAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/IngressosAPI.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/project.assets.json -------------------------------------------------------------------------------- /obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioCunha10/IngressosManagementAPI/HEAD/obj/project.nuget.cache --------------------------------------------------------------------------------