├── .gitignore ├── .vs └── TripBooking │ └── v17 │ └── .suo └── TripBooking ├── .vs ├── ProjectEvaluation │ ├── tripbooking.metadata.v7.bin │ └── tripbooking.projects.v7.bin └── TripBooking │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ ├── FileContentIndex │ ├── 6c85a10f-fd12-4b73-afd9-f6a29ab173ee.vsidx │ ├── ac664a5c-6464-40fa-9696-de04fc7977b6.vsidx │ ├── bac06c3d-1823-4e86-adcf-08698ebcb423.vsidx │ ├── cb831e4a-e3ab-47c1-9e11-9f7cf296eb42.vsidx │ └── df0e1774-e5ee-4f5b-bc38-fce1f429b625.vsidx │ ├── config │ └── applicationhost.config │ └── v17 │ ├── .futdcache.v1 │ ├── .futdcache.v2 │ └── .suo ├── Booking.Saga.Consumer ├── Booking.Saga.Consumer.csproj ├── BookingSagaDbContext.cs ├── BookingStateMachine.cs ├── Migrations │ ├── 20230529135653_Initial.Designer.cs │ ├── 20230529135653_Initial.cs │ ├── 20231017101030_ChangedBookingState.Designer.cs │ ├── 20231017101030_ChangedBookingState.cs │ ├── 20231018113832_AddedKeyId.Designer.cs │ ├── 20231018113832_AddedKeyId.cs │ ├── 20231018120401_Changes.Designer.cs │ ├── 20231018120401_Changes.cs │ └── BookingSagaDbContextModelSnapshot.cs ├── Program.cs ├── SendEndpoint.cs └── appsettings.json ├── CarService.Application ├── CarService.Application.csproj ├── Common │ ├── ICarDbContext.cs │ └── Model │ │ └── CarResponse.cs ├── Properties │ └── launchSettings.json ├── Services │ └── BookingService │ │ └── Query │ │ └── Get.cs ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── CarService.Application.deps.json │ │ ├── CarService.Application.dll │ │ ├── CarService.Application.pdb │ │ ├── CarService.Domain.dll │ │ └── CarService.Domain.pdb └── obj │ ├── CarService.Application.csproj.nuget.dgspec.json │ ├── CarService.Application.csproj.nuget.g.props │ ├── CarService.Application.csproj.nuget.g.targets │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── CarService.Application.AssemblyInfo.cs │ │ ├── CarService.Application.AssemblyInfoInputs.cache │ │ ├── CarService.Application.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── CarService.Application.assets.cache │ │ ├── CarService.Application.csproj.AssemblyReference.cache │ │ ├── CarService.Application.csproj.CopyComplete │ │ ├── CarService.Application.csproj.CoreCompileInputs.cache │ │ ├── CarService.Application.csproj.FileListAbsolute.txt │ │ ├── CarService.Application.dll │ │ ├── CarService.Application.pdb │ │ ├── ref │ │ └── CarService.Application.dll │ │ └── refint │ │ └── CarService.Application.dll │ ├── project.assets.json │ └── project.nuget.cache ├── CarService.Consumer ├── CarService.Consumer.csproj ├── Consumer │ ├── CreateCarBookingConsumer.cs │ └── RollbackCarBookingConsumer.cs ├── Program.cs ├── appsettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── CarService.Consumer.deps.json │ │ ├── CarService.Consumer.dll │ │ └── CarService.Consumer.pdb └── obj │ ├── CarService.Consumer.csproj.nuget.dgspec.json │ ├── CarService.Consumer.csproj.nuget.g.props │ ├── CarService.Consumer.csproj.nuget.g.targets │ ├── Debug │ └── net5.0 │ │ ├── CarService.Consumer.AssemblyInfo.cs │ │ ├── CarService.Consumer.AssemblyInfoInputs.cache │ │ ├── CarService.Consumer.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── CarService.Consumer.assets.cache │ │ ├── CarService.Consumer.csproj.AssemblyReference.cache │ │ ├── CarService.Consumer.csproj.CoreCompileInputs.cache │ │ ├── CarService.Consumer.csproj.FileListAbsolute.txt │ │ ├── CarService.Consumer.dll │ │ ├── CarService.Consumer.pdb │ │ ├── ref │ │ └── CarService.Consumer.dll │ │ └── refint │ │ └── CarService.Consumer.dll │ ├── project.assets.json │ └── project.nuget.cache ├── CarService.Domain ├── CarService.Domain.csproj ├── Common │ └── AuditableEntity.cs ├── Entities │ ├── Booking.cs │ └── Rent.cs ├── Properties │ └── launchSettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── CarService.Domain.deps.json │ │ ├── CarService.Domain.dll │ │ └── CarService.Domain.pdb └── obj │ ├── CarService.Domain.csproj.nuget.dgspec.json │ ├── CarService.Domain.csproj.nuget.g.props │ ├── CarService.Domain.csproj.nuget.g.targets │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── CarService.Domain.AssemblyInfo.cs │ │ ├── CarService.Domain.AssemblyInfoInputs.cache │ │ ├── CarService.Domain.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── CarService.Domain.assets.cache │ │ ├── CarService.Domain.csproj.AssemblyReference.cache │ │ ├── CarService.Domain.csproj.CoreCompileInputs.cache │ │ ├── CarService.Domain.csproj.FileListAbsolute.txt │ │ ├── CarService.Domain.dll │ │ ├── CarService.Domain.pdb │ │ ├── ref │ │ └── CarService.Domain.dll │ │ └── refint │ │ └── CarService.Domain.dll │ ├── project.assets.json │ └── project.nuget.cache ├── CarService.Infrastructure ├── CarService.Infrastructure.csproj ├── Migrations │ ├── 20220722120102_InitCar.Designer.cs │ ├── 20220722120102_InitCar.cs │ ├── 20230913101159_ChangedRent.Designer.cs │ ├── 20230913101159_ChangedRent.cs │ ├── 20230913113116_AddedCity.Designer.cs │ ├── 20230913113116_AddedCity.cs │ ├── 20231016145253_ChangedDatesRent.Designer.cs │ ├── 20231016145253_ChangedDatesRent.cs │ ├── 20231017144111_AddedBooking.Designer.cs │ ├── 20231017144111_AddedBooking.cs │ └── CarDbContextModelSnapshot.cs ├── Persistence │ └── CarDbContext.cs ├── Properties │ └── launchSettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── CarService.Application.dll │ │ ├── CarService.Application.pdb │ │ ├── CarService.Domain.dll │ │ ├── CarService.Domain.pdb │ │ ├── CarService.Infrastructure.deps.json │ │ ├── CarService.Infrastructure.dll │ │ ├── CarService.Infrastructure.pdb │ │ ├── CarService.Infrastructure.runtimeconfig.dev.json │ │ └── CarService.Infrastructure.runtimeconfig.json └── obj │ ├── CarService.Infrastructure.csproj.nuget.dgspec.json │ ├── CarService.Infrastructure.csproj.nuget.g.props │ ├── CarService.Infrastructure.csproj.nuget.g.targets │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── CarService.Infrastructure.AssemblyInfo.cs │ │ ├── CarService.Infrastructure.AssemblyInfoInputs.cache │ │ ├── CarService.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── CarService.Infrastructure.assets.cache │ │ ├── CarService.Infrastructure.csproj.AssemblyReference.cache │ │ ├── CarService.Infrastructure.csproj.CopyComplete │ │ ├── CarService.Infrastructure.csproj.CoreCompileInputs.cache │ │ ├── CarService.Infrastructure.csproj.FileListAbsolute.txt │ │ ├── CarService.Infrastructure.dll │ │ ├── CarService.Infrastructure.genruntimeconfig.cache │ │ ├── CarService.Infrastructure.pdb │ │ ├── ref │ │ └── CarService.Infrastructure.dll │ │ └── refint │ │ └── CarService.Infrastructure.dll │ ├── project.assets.json │ └── project.nuget.cache ├── CarService ├── CarService.csproj ├── Controllers │ ├── Base │ │ └── BaseController.cs │ └── CarController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── CarService.Application.dll │ │ ├── CarService.Application.pdb │ │ ├── CarService.Domain.dll │ │ ├── CarService.Domain.pdb │ │ ├── CarService.Infrastructure.dll │ │ ├── CarService.Infrastructure.pdb │ │ ├── CarService.deps.json │ │ ├── CarService.dll │ │ ├── CarService.exe │ │ ├── CarService.pdb │ │ ├── CarService.runtimeconfig.dev.json │ │ ├── CarService.runtimeconfig.json │ │ ├── Humanizer.dll │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Identity.Client.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 │ │ ├── Newtonsoft.Json.dll │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ ├── win-arm │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-arm64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-x64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-x86 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ └── win │ │ └── lib │ │ ├── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ ├── System.Runtime.Caching.dll │ │ └── System.Security.Cryptography.ProtectedData.dll └── obj │ ├── CarService.csproj.nuget.dgspec.json │ ├── CarService.csproj.nuget.g.props │ ├── CarService.csproj.nuget.g.targets │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── CarService.AssemblyInfo.cs │ │ ├── CarService.AssemblyInfoInputs.cache │ │ ├── CarService.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── CarService.MvcApplicationPartsAssemblyInfo.cache │ │ ├── CarService.MvcApplicationPartsAssemblyInfo.cs │ │ ├── CarService.RazorTargetAssemblyInfo.cache │ │ ├── CarService.assets.cache │ │ ├── CarService.csproj.AssemblyReference.cache │ │ ├── CarService.csproj.CopyComplete │ │ ├── CarService.csproj.CoreCompileInputs.cache │ │ ├── CarService.csproj.FileListAbsolute.txt │ │ ├── CarService.dll │ │ ├── CarService.genruntimeconfig.cache │ │ ├── CarService.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── CarService.dll │ │ ├── refint │ │ └── CarService.dll │ │ └── staticwebassets │ │ └── CarService.StaticWebAssets.Manifest.cache │ ├── project.assets.json │ └── project.nuget.cache ├── Contacts ├── BookingRequest.cs ├── CarBookingRequest.cs ├── Contracts.csproj ├── FlightBookingRequest.cs └── HotelBookingRequest.cs ├── FlightService.Application ├── Common │ ├── IFlightDbContext.cs │ └── Models │ │ └── FlightResponse.cs ├── FlightService.Application.csproj ├── Services │ └── BookingService │ │ └── Query │ │ └── GetAll.cs ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── FlightService.Application.deps.json │ │ ├── FlightService.Application.dll │ │ ├── FlightService.Application.pdb │ │ ├── FlightService.Domain.dll │ │ └── FlightService.Domain.pdb └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── FlightService.Application.AssemblyInfo.cs │ │ ├── FlightService.Application.AssemblyInfoInputs.cache │ │ ├── FlightService.Application.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── FlightService.Application.assets.cache │ │ ├── FlightService.Application.csproj.AssemblyReference.cache │ │ ├── FlightService.Application.csproj.CopyComplete │ │ ├── FlightService.Application.csproj.CoreCompileInputs.cache │ │ ├── FlightService.Application.csproj.FileListAbsolute.txt │ │ ├── FlightService.Application.dll │ │ ├── FlightService.Application.pdb │ │ ├── ref │ │ └── FlightService.Application.dll │ │ └── refint │ │ └── FlightService.Application.dll │ ├── FlightService.Application.csproj.nuget.dgspec.json │ ├── FlightService.Application.csproj.nuget.g.props │ ├── FlightService.Application.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── FlightService.Consumer ├── Consumer │ ├── CreateFlightBookingConsumer.cs │ └── RollbackFlightBookingConsumer.cs ├── FlightService.Consumer.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── FlightService.Consumer.deps.json │ │ ├── FlightService.Consumer.dll │ │ └── FlightService.Consumer.pdb └── obj │ ├── Debug │ └── net5.0 │ │ ├── FlightService.Consumer.AssemblyInfo.cs │ │ ├── FlightService.Consumer.AssemblyInfoInputs.cache │ │ ├── FlightService.Consumer.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── FlightService.Consumer.assets.cache │ │ ├── FlightService.Consumer.csproj.AssemblyReference.cache │ │ ├── FlightService.Consumer.csproj.CoreCompileInputs.cache │ │ ├── FlightService.Consumer.csproj.FileListAbsolute.txt │ │ ├── FlightService.Consumer.dll │ │ ├── FlightService.Consumer.pdb │ │ ├── ref │ │ └── FlightService.Consumer.dll │ │ └── refint │ │ └── FlightService.Consumer.dll │ ├── FlightService.Consumer.csproj.nuget.dgspec.json │ ├── FlightService.Consumer.csproj.nuget.g.props │ ├── FlightService.Consumer.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── FlightService.Domain ├── Common │ └── AuditableEntity.cs ├── Entities │ ├── Booking.cs │ └── Flight.cs ├── FlightService.Domain.csproj ├── Properties │ └── launchSettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── FlightService.Domain.deps.json │ │ ├── FlightService.Domain.dll │ │ └── FlightService.Domain.pdb └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── FlightService.Domain.AssemblyInfo.cs │ │ ├── FlightService.Domain.AssemblyInfoInputs.cache │ │ ├── FlightService.Domain.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── FlightService.Domain.assets.cache │ │ ├── FlightService.Domain.csproj.AssemblyReference.cache │ │ ├── FlightService.Domain.csproj.CoreCompileInputs.cache │ │ ├── FlightService.Domain.csproj.FileListAbsolute.txt │ │ ├── FlightService.Domain.dll │ │ ├── FlightService.Domain.pdb │ │ ├── ref │ │ └── FlightService.Domain.dll │ │ └── refint │ │ └── FlightService.Domain.dll │ ├── FlightService.Domain.csproj.nuget.dgspec.json │ ├── FlightService.Domain.csproj.nuget.g.props │ ├── FlightService.Domain.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── FlightService.Infrastructure ├── FlightService.Infrastructure.csproj ├── Migrations │ ├── 20220722095313_InitFlight.Designer.cs │ ├── 20220722095313_InitFlight.cs │ ├── 20230913092447_FlightsUpdated.Designer.cs │ ├── 20230913092447_FlightsUpdated.cs │ ├── 20230913102315_AddedDateTimes.Designer.cs │ ├── 20230913102315_AddedDateTimes.cs │ ├── 20230913102354_Changes.Designer.cs │ ├── 20230913102354_Changes.cs │ ├── 20231008150253_AddedReturnDateToFlight.Designer.cs │ ├── 20231008150253_AddedReturnDateToFlight.cs │ ├── 20231009141456_LengthInMinutes.Designer.cs │ ├── 20231009141456_LengthInMinutes.cs │ ├── 20231009142950_TakeoffandLanding.Designer.cs │ ├── 20231009142950_TakeoffandLanding.cs │ ├── 20231017141350_AddedBooking.Designer.cs │ ├── 20231017141350_AddedBooking.cs │ └── FlightDbContextModelSnapshot.cs ├── Persistence │ └── FlightDbContext.cs ├── Properties │ └── launchSettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── FlightService.Application.dll │ │ ├── FlightService.Application.pdb │ │ ├── FlightService.Domain.dll │ │ ├── FlightService.Domain.pdb │ │ ├── FlightService.Infrastructure.deps.json │ │ ├── FlightService.Infrastructure.dll │ │ ├── FlightService.Infrastructure.pdb │ │ ├── FlightService.Infrastructure.runtimeconfig.dev.json │ │ └── FlightService.Infrastructure.runtimeconfig.json └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── FlightService.Infrastructure.AssemblyInfo.cs │ │ ├── FlightService.Infrastructure.AssemblyInfoInputs.cache │ │ ├── FlightService.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── FlightService.Infrastructure.assets.cache │ │ ├── FlightService.Infrastructure.csproj.AssemblyReference.cache │ │ ├── FlightService.Infrastructure.csproj.CopyComplete │ │ ├── FlightService.Infrastructure.csproj.CoreCompileInputs.cache │ │ ├── FlightService.Infrastructure.csproj.FileListAbsolute.txt │ │ ├── FlightService.Infrastructure.dll │ │ ├── FlightService.Infrastructure.genruntimeconfig.cache │ │ ├── FlightService.Infrastructure.pdb │ │ ├── ref │ │ └── FlightService.Infrastructure.dll │ │ └── refint │ │ └── FlightService.Infrastructure.dll │ ├── FlightService.Infrastructure.csproj.nuget.dgspec.json │ ├── FlightService.Infrastructure.csproj.nuget.g.props │ ├── FlightService.Infrastructure.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── FlightService ├── Controllers │ ├── Base │ │ └── BaseController.cs │ └── FlightController.cs ├── FlightService.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── FlightService.Application.dll │ │ ├── FlightService.Application.pdb │ │ ├── FlightService.Domain.dll │ │ ├── FlightService.Domain.pdb │ │ ├── FlightService.Infrastructure.dll │ │ ├── FlightService.Infrastructure.pdb │ │ ├── FlightService.deps.json │ │ ├── FlightService.dll │ │ ├── FlightService.exe │ │ ├── FlightService.pdb │ │ ├── FlightService.runtimeconfig.dev.json │ │ ├── FlightService.runtimeconfig.json │ │ ├── Humanizer.dll │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Identity.Client.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 │ │ ├── Newtonsoft.Json.dll │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ ├── win-arm │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-arm64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-x64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-x86 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ └── win │ │ └── lib │ │ ├── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ ├── System.Runtime.Caching.dll │ │ └── System.Security.Cryptography.ProtectedData.dll └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── FlightService.AssemblyInfo.cs │ │ ├── FlightService.AssemblyInfoInputs.cache │ │ ├── FlightService.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── FlightService.MvcApplicationPartsAssemblyInfo.cache │ │ ├── FlightService.MvcApplicationPartsAssemblyInfo.cs │ │ ├── FlightService.RazorTargetAssemblyInfo.cache │ │ ├── FlightService.assets.cache │ │ ├── FlightService.csproj.AssemblyReference.cache │ │ ├── FlightService.csproj.CopyComplete │ │ ├── FlightService.csproj.CoreCompileInputs.cache │ │ ├── FlightService.csproj.FileListAbsolute.txt │ │ ├── FlightService.dll │ │ ├── FlightService.genruntimeconfig.cache │ │ ├── FlightService.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── FlightService.dll │ │ ├── refint │ │ └── FlightService.dll │ │ └── staticwebassets │ │ └── FlightService.StaticWebAssets.Manifest.cache │ ├── FlightService.csproj.nuget.dgspec.json │ ├── FlightService.csproj.nuget.g.props │ ├── FlightService.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── HotelService.Application ├── Common │ ├── IHotelDbContext.cs │ └── Models │ │ ├── HotelResponse.cs │ │ └── Result.cs ├── HotelService.Application.csproj ├── Properties │ └── launchSettings.json ├── Services │ └── BookingService │ │ ├── Command │ │ └── Create.cs │ │ └── Query │ │ └── GetByDestination.cs ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── HotelService.Application.deps.json │ │ ├── HotelService.Application.dll │ │ ├── HotelService.Application.pdb │ │ ├── HotelService.Domain.dll │ │ ├── HotelService.Domain.pdb │ │ ├── Saga.Shared.dll │ │ └── Saga.Shared.pdb └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── HotelService.Application.AssemblyInfo.cs │ │ ├── HotelService.Application.AssemblyInfoInputs.cache │ │ ├── HotelService.Application.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── HotelService.Application.assets.cache │ │ ├── HotelService.Application.csproj.AssemblyReference.cache │ │ ├── HotelService.Application.csproj.CopyComplete │ │ ├── HotelService.Application.csproj.CoreCompileInputs.cache │ │ ├── HotelService.Application.csproj.FileListAbsolute.txt │ │ ├── HotelService.Application.dll │ │ ├── HotelService.Application.pdb │ │ ├── ref │ │ └── HotelService.Application.dll │ │ └── refint │ │ └── HotelService.Application.dll │ ├── HotelService.Application.csproj.nuget.dgspec.json │ ├── HotelService.Application.csproj.nuget.g.props │ ├── HotelService.Application.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── HotelService.Consumer ├── Consumer │ ├── HotelBookingCompletedConsumer.cs │ ├── HotelBookingCreatedConsumer.cs │ ├── HotelBookingFailedConsumer.cs │ └── RollbackHotelBookingConsumer.cs ├── HotelService.Consumer.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── HotelService.Consumer.deps.json │ │ ├── HotelService.Consumer.dll │ │ └── HotelService.Consumer.pdb └── obj │ ├── Debug │ └── net5.0 │ │ ├── HotelService.Consumer.AssemblyInfo.cs │ │ ├── HotelService.Consumer.AssemblyInfoInputs.cache │ │ ├── HotelService.Consumer.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── HotelService.Consumer.assets.cache │ │ ├── HotelService.Consumer.csproj.AssemblyReference.cache │ │ ├── HotelService.Consumer.csproj.CoreCompileInputs.cache │ │ ├── HotelService.Consumer.csproj.FileListAbsolute.txt │ │ ├── HotelService.Consumer.dll │ │ ├── HotelService.Consumer.pdb │ │ ├── ref │ │ └── HotelService.Consumer.dll │ │ └── refint │ │ └── HotelService.Consumer.dll │ ├── HotelService.Consumer.csproj.nuget.dgspec.json │ ├── HotelService.Consumer.csproj.nuget.g.props │ ├── HotelService.Consumer.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── HotelService.Domain ├── Common │ └── AuditableEntity.cs ├── Entities │ ├── Booking.cs │ └── Hotel.cs ├── Enums │ └── BookingStatus.cs ├── HotelService.Domain.csproj ├── Properties │ └── launchSettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── HotelService.Domain.deps.json │ │ ├── HotelService.Domain.dll │ │ ├── HotelService.Domain.pdb │ │ ├── Saga.Shared.dll │ │ └── Saga.Shared.pdb └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── HotelService.Domain.AssemblyInfo.cs │ │ ├── HotelService.Domain.AssemblyInfoInputs.cache │ │ ├── HotelService.Domain.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── HotelService.Domain.assets.cache │ │ ├── HotelService.Domain.csproj.AssemblyReference.cache │ │ ├── HotelService.Domain.csproj.CopyComplete │ │ ├── HotelService.Domain.csproj.CoreCompileInputs.cache │ │ ├── HotelService.Domain.csproj.FileListAbsolute.txt │ │ ├── HotelService.Domain.dll │ │ ├── HotelService.Domain.pdb │ │ ├── ref │ │ └── HotelService.Domain.dll │ │ └── refint │ │ └── HotelService.Domain.dll │ ├── HotelService.Domain.csproj.nuget.dgspec.json │ ├── HotelService.Domain.csproj.nuget.g.props │ ├── HotelService.Domain.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── HotelService.Infrastructure ├── HotelService.Infrastructure.csproj ├── Migrations │ ├── 20231017094924_FixedBooking.Designer.cs │ ├── 20231017094924_FixedBooking.cs │ └── HotelDbContextModelSnapshot.cs ├── Persistence │ └── HotelDbContext.cs ├── Properties │ └── launchSettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── HotelService.Application.dll │ │ ├── HotelService.Application.pdb │ │ ├── HotelService.Domain.dll │ │ ├── HotelService.Domain.pdb │ │ ├── HotelService.Infrastructure.deps.json │ │ ├── HotelService.Infrastructure.dll │ │ ├── HotelService.Infrastructure.pdb │ │ ├── HotelService.Infrastructure.runtimeconfig.dev.json │ │ ├── HotelService.Infrastructure.runtimeconfig.json │ │ ├── Saga.Shared.dll │ │ └── Saga.Shared.pdb └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── HotelService.Infrastructure.AssemblyInfo.cs │ │ ├── HotelService.Infrastructure.AssemblyInfoInputs.cache │ │ ├── HotelService.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── HotelService.Infrastructure.assets.cache │ │ ├── HotelService.Infrastructure.csproj.AssemblyReference.cache │ │ ├── HotelService.Infrastructure.csproj.CopyComplete │ │ ├── HotelService.Infrastructure.csproj.CoreCompileInputs.cache │ │ ├── HotelService.Infrastructure.csproj.FileListAbsolute.txt │ │ ├── HotelService.Infrastructure.dll │ │ ├── HotelService.Infrastructure.genruntimeconfig.cache │ │ ├── HotelService.Infrastructure.pdb │ │ ├── ref │ │ └── HotelService.Infrastructure.dll │ │ └── refint │ │ └── HotelService.Infrastructure.dll │ ├── HotelService.Infrastructure.csproj.nuget.dgspec.json │ ├── HotelService.Infrastructure.csproj.nuget.g.props │ ├── HotelService.Infrastructure.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── HotelService ├── Controllers │ ├── Base │ │ └── BaseController.cs │ ├── BookingController.cs │ └── HotelController.cs ├── HotelService.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── HotelService.Application.dll │ │ ├── HotelService.Application.pdb │ │ ├── HotelService.Domain.dll │ │ ├── HotelService.Domain.pdb │ │ ├── HotelService.Infrastructure.dll │ │ ├── HotelService.Infrastructure.pdb │ │ ├── HotelService.deps.json │ │ ├── HotelService.dll │ │ ├── HotelService.exe │ │ ├── HotelService.pdb │ │ ├── HotelService.runtimeconfig.dev.json │ │ ├── HotelService.runtimeconfig.json │ │ ├── Humanizer.dll │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.Identity.Core.dll │ │ ├── Microsoft.Extensions.Identity.Stores.dll │ │ ├── Microsoft.Identity.Client.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 │ │ ├── Newtonsoft.Json.dll │ │ ├── Saga.Shared.dll │ │ ├── Saga.Shared.pdb │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ ├── win-arm │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-arm64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-x64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-x86 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ └── win │ │ └── lib │ │ ├── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ ├── System.Runtime.Caching.dll │ │ └── System.Security.Cryptography.ProtectedData.dll └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── HotelService.AssemblyInfo.cs │ │ ├── HotelService.AssemblyInfoInputs.cache │ │ ├── HotelService.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── HotelService.MvcApplicationPartsAssemblyInfo.cache │ │ ├── HotelService.MvcApplicationPartsAssemblyInfo.cs │ │ ├── HotelService.RazorTargetAssemblyInfo.cache │ │ ├── HotelService.assets.cache │ │ ├── HotelService.csproj.AssemblyReference.cache │ │ ├── HotelService.csproj.CopyComplete │ │ ├── HotelService.csproj.CoreCompileInputs.cache │ │ ├── HotelService.csproj.FileListAbsolute.txt │ │ ├── HotelService.dll │ │ ├── HotelService.genruntimeconfig.cache │ │ ├── HotelService.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── HotelService.dll │ │ ├── refint │ │ └── HotelService.dll │ │ └── staticwebassets │ │ └── HotelService.StaticWebAssets.Manifest.cache │ ├── HotelService.csproj.nuget.dgspec.json │ ├── HotelService.csproj.nuget.g.props │ ├── HotelService.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Notification.Test ├── Notification.Test.csproj ├── NotificationHub.cs └── Program.cs ├── NotificationService.Application ├── Common │ └── INotificationDbContext.cs ├── NotificationService.Application.csproj ├── Properties │ └── launchSettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── NotificationService.Application.deps.json │ │ ├── NotificationService.Application.dll │ │ ├── NotificationService.Application.pdb │ │ ├── NotificationService.Domain.dll │ │ └── NotificationService.Domain.pdb └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── NotificationService.Application.AssemblyInfo.cs │ │ ├── NotificationService.Application.AssemblyInfoInputs.cache │ │ ├── NotificationService.Application.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── NotificationService.Application.assets.cache │ │ ├── NotificationService.Application.csproj.AssemblyReference.cache │ │ ├── NotificationService.Application.csproj.CopyComplete │ │ ├── NotificationService.Application.csproj.CoreCompileInputs.cache │ │ ├── NotificationService.Application.csproj.FileListAbsolute.txt │ │ ├── NotificationService.Application.dll │ │ ├── NotificationService.Application.pdb │ │ ├── ref │ │ └── NotificationService.Application.dll │ │ └── refint │ │ └── NotificationService.Application.dll │ ├── NotificationService.Application.csproj.nuget.dgspec.json │ ├── NotificationService.Application.csproj.nuget.g.props │ ├── NotificationService.Application.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── NotificationService.Consumer ├── Consumer │ └── CreateNotificationConsumer.cs ├── Controllers │ └── TestSignalRController.cs ├── NotificationHub.cs ├── NotificationService.Consumer.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json └── obj │ ├── NotificationService.Consumer.csproj.nuget.dgspec.json │ ├── NotificationService.Consumer.csproj.nuget.g.props │ ├── NotificationService.Consumer.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── NotificationService.Domain ├── Common │ └── AuditableEntity.cs ├── Entities │ └── Notification.cs ├── NotificationService.Domain.csproj ├── Properties │ └── launchSettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── NotificationService.Domain.deps.json │ │ ├── NotificationService.Domain.dll │ │ └── NotificationService.Domain.pdb └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── NotificationService.Domain.AssemblyInfo.cs │ │ ├── NotificationService.Domain.AssemblyInfoInputs.cache │ │ ├── NotificationService.Domain.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── NotificationService.Domain.assets.cache │ │ ├── NotificationService.Domain.csproj.AssemblyReference.cache │ │ ├── NotificationService.Domain.csproj.CoreCompileInputs.cache │ │ ├── NotificationService.Domain.csproj.FileListAbsolute.txt │ │ ├── NotificationService.Domain.dll │ │ ├── NotificationService.Domain.pdb │ │ ├── ref │ │ └── NotificationService.Domain.dll │ │ └── refint │ │ └── NotificationService.Domain.dll │ ├── NotificationService.Domain.csproj.nuget.dgspec.json │ ├── NotificationService.Domain.csproj.nuget.g.props │ ├── NotificationService.Domain.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── NotificationService.Infrastructure ├── Migrations │ ├── 20220722120818_InitNotification.Designer.cs │ ├── 20220722120818_InitNotification.cs │ └── NotificationDbContextModelSnapshot.cs ├── NotificationService.Infrastructure.csproj ├── Persistence │ └── NotificationDbContext.cs ├── Properties │ └── launchSettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── NotificationService.Application.dll │ │ ├── NotificationService.Application.pdb │ │ ├── NotificationService.Domain.dll │ │ ├── NotificationService.Domain.pdb │ │ ├── NotificationService.Infrastructure.deps.json │ │ ├── NotificationService.Infrastructure.dll │ │ ├── NotificationService.Infrastructure.pdb │ │ ├── NotificationService.Infrastructure.runtimeconfig.dev.json │ │ └── NotificationService.Infrastructure.runtimeconfig.json └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── NotificationService.Infrastructure.AssemblyInfo.cs │ │ ├── NotificationService.Infrastructure.AssemblyInfoInputs.cache │ │ ├── NotificationService.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── NotificationService.Infrastructure.assets.cache │ │ ├── NotificationService.Infrastructure.csproj.AssemblyReference.cache │ │ ├── NotificationService.Infrastructure.csproj.CopyComplete │ │ ├── NotificationService.Infrastructure.csproj.CoreCompileInputs.cache │ │ ├── NotificationService.Infrastructure.csproj.FileListAbsolute.txt │ │ ├── NotificationService.Infrastructure.dll │ │ ├── NotificationService.Infrastructure.genruntimeconfig.cache │ │ ├── NotificationService.Infrastructure.pdb │ │ ├── ref │ │ └── NotificationService.Infrastructure.dll │ │ └── refint │ │ └── NotificationService.Infrastructure.dll │ ├── NotificationService.Infrastructure.csproj.nuget.dgspec.json │ ├── NotificationService.Infrastructure.csproj.nuget.g.props │ ├── NotificationService.Infrastructure.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── NotificationService ├── NotificationService.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── Humanizer.dll │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Identity.Client.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 │ │ ├── Newtonsoft.Json.dll │ │ ├── NotificationService.Application.dll │ │ ├── NotificationService.Application.pdb │ │ ├── NotificationService.Domain.dll │ │ ├── NotificationService.Domain.pdb │ │ ├── NotificationService.Infrastructure.dll │ │ ├── NotificationService.Infrastructure.pdb │ │ ├── NotificationService.deps.json │ │ ├── NotificationService.dll │ │ ├── NotificationService.exe │ │ ├── NotificationService.pdb │ │ ├── NotificationService.runtimeconfig.dev.json │ │ ├── NotificationService.runtimeconfig.json │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ ├── win-arm │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-arm64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-x64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-x86 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ └── win │ │ └── lib │ │ ├── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ ├── System.Runtime.Caching.dll │ │ └── System.Security.Cryptography.ProtectedData.dll └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── NotificationService.AssemblyInfo.cs │ │ ├── NotificationService.AssemblyInfoInputs.cache │ │ ├── NotificationService.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── NotificationService.MvcApplicationPartsAssemblyInfo.cache │ │ ├── NotificationService.MvcApplicationPartsAssemblyInfo.cs │ │ ├── NotificationService.RazorTargetAssemblyInfo.cache │ │ ├── NotificationService.assets.cache │ │ ├── NotificationService.csproj.AssemblyReference.cache │ │ ├── NotificationService.csproj.CopyComplete │ │ ├── NotificationService.csproj.CoreCompileInputs.cache │ │ ├── NotificationService.csproj.FileListAbsolute.txt │ │ ├── NotificationService.dll │ │ ├── NotificationService.genruntimeconfig.cache │ │ ├── NotificationService.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── NotificationService.dll │ │ ├── refint │ │ └── NotificationService.dll │ │ └── staticwebassets │ │ └── NotificationService.StaticWebAssets.Manifest.cache │ ├── NotificationService.csproj.nuget.dgspec.json │ ├── NotificationService.csproj.nuget.g.props │ ├── NotificationService.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Saga.Core ├── Constants │ └── SagaConstants.cs ├── DependencyRegisters │ └── RegisterSagaCore.cs ├── MessageBrokers │ ├── Concrete │ │ └── BusConfiguration.cs │ └── Models │ │ └── EventModel.cs ├── Properties │ └── launchSettings.json ├── Saga.Core.csproj ├── Settings │ ├── Abstract │ │ └── ISettings.cs │ └── Concrete │ │ └── Brokers │ │ └── MassTransitSettings.cs ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── Saga.Core.deps.json │ │ ├── Saga.Core.dll │ │ └── Saga.Core.pdb └── obj │ ├── Debug │ └── net5.0 │ │ ├── Saga.Core.AssemblyInfo.cs │ │ ├── Saga.Core.AssemblyInfoInputs.cache │ │ ├── Saga.Core.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Saga.Core.assets.cache │ │ ├── Saga.Core.csproj.AssemblyReference.cache │ │ ├── Saga.Core.csproj.CoreCompileInputs.cache │ │ ├── Saga.Core.csproj.FileListAbsolute.txt │ │ ├── Saga.Core.dll │ │ ├── Saga.Core.pdb │ │ ├── ref │ │ └── Saga.Core.dll │ │ └── refint │ │ └── Saga.Core.dll │ ├── Saga.Core.csproj.nuget.dgspec.json │ ├── Saga.Core.csproj.nuget.g.props │ ├── Saga.Core.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Saga.Shared ├── Common │ ├── AuditableEntity.cs │ └── IMessage.cs ├── Consumers │ ├── Abstract │ │ ├── IBookingRequestEvent.cs │ │ ├── ICreateCarBookingEvent.cs │ │ ├── ICreateFlightBookingEvent.cs │ │ ├── ICreateNotificationEvent.cs │ │ ├── ICreatedBookingEvent.cs │ │ ├── IHotelBookingCompletedEvent.cs │ │ ├── IHotelBookingFailedEvent.cs │ │ ├── IRollbackCarBookingEvent.cs │ │ ├── IRollbackFlightBookingEvent.cs │ │ └── IRollbackHotelBookingEvent.cs │ └── Models │ │ ├── Booking │ │ ├── CreatedBookingEvent.cs │ │ ├── HotelBookingCompletedEvent.cs │ │ ├── HotelBookingFailedEvent.cs │ │ └── RollbackHotelBookingEvent.cs │ │ ├── Car │ │ ├── CreateCarBookingEvent.cs │ │ └── RollbackCarBookingEvent.cs │ │ ├── Flight │ │ ├── CreateFlightBookingEvent.cs │ │ └── RollbackFlightBookingEvent.cs │ │ ├── Notifications │ │ └── CreateNotificationEvent.cs │ │ └── Sagas │ │ ├── BookingRequestEvent.cs │ │ └── BookingState.cs ├── Properties │ └── launchSettings.json ├── Saga.Shared.csproj ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── Saga.Shared.deps.json │ │ ├── Saga.Shared.dll │ │ └── Saga.Shared.pdb └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── Saga.Shared.AssemblyInfo.cs │ │ ├── Saga.Shared.AssemblyInfoInputs.cache │ │ ├── Saga.Shared.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Saga.Shared.assets.cache │ │ ├── Saga.Shared.csproj.AssemblyReference.cache │ │ ├── Saga.Shared.csproj.CoreCompileInputs.cache │ │ ├── Saga.Shared.csproj.FileListAbsolute.txt │ │ ├── Saga.Shared.dll │ │ ├── Saga.Shared.pdb │ │ ├── ref │ │ └── Saga.Shared.dll │ │ └── refint │ │ └── Saga.Shared.dll │ ├── Saga.Shared.csproj.nuget.dgspec.json │ ├── Saga.Shared.csproj.nuget.g.props │ ├── Saga.Shared.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── TripBooking.sln └── WebApp ├── Controllers └── HomeController.cs ├── Models └── ErrorViewModel.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Views ├── Home │ ├── BookingResult.cshtml │ ├── Index.cshtml │ └── Privacy.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ ├── _Layout.cshtml.css │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── WebApp.csproj ├── appsettings.Development.json ├── appsettings.json └── wwwroot ├── css ├── site.css └── style.css ├── favicon.ico ├── img └── background.jpg ├── js └── site.js └── lib ├── bootstrap ├── LICENSE └── dist │ ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-grid.rtl.css │ ├── bootstrap-grid.rtl.css.map │ ├── bootstrap-grid.rtl.min.css │ ├── bootstrap-grid.rtl.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap-reboot.rtl.css │ ├── bootstrap-reboot.rtl.css.map │ ├── bootstrap-reboot.rtl.min.css │ ├── bootstrap-reboot.rtl.min.css.map │ ├── bootstrap-utilities.css │ ├── bootstrap-utilities.css.map │ ├── bootstrap-utilities.min.css │ ├── bootstrap-utilities.min.css.map │ ├── bootstrap-utilities.rtl.css │ ├── bootstrap-utilities.rtl.css.map │ ├── bootstrap-utilities.rtl.min.css │ ├── bootstrap-utilities.rtl.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap.rtl.css │ ├── bootstrap.rtl.css.map │ ├── bootstrap.rtl.min.css │ └── bootstrap.rtl.min.css.map │ └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.esm.js │ ├── bootstrap.esm.js.map │ ├── bootstrap.esm.min.js │ ├── bootstrap.esm.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map ├── jquery-validation-unobtrusive ├── LICENSE.txt ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── LICENSE.md └── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js └── jquery ├── LICENSE.txt └── dist ├── jquery.js ├── jquery.min.js └── jquery.min.map /.gitignore: -------------------------------------------------------------------------------- 1 | /.vs 2 | 3 | [Dd]ebug/ 4 | [Rr]elease/ 5 | x64/ 6 | build/ 7 | [Bb]in/ 8 | [Oo]bj/ 9 | 10 | *.[Pp]ublish.xml 11 | *.azurePubxml 12 | *.pubxml 13 | *.pubxml.user 14 | *.publishproj 15 | *.csproj.user 16 | 17 | ../logs 18 | /logs 19 | /logs-v2 20 | 21 | -------------------------------------------------------------------------------- /.vs/TripBooking/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/.vs/TripBooking/v17/.suo -------------------------------------------------------------------------------- /TripBooking/.vs/ProjectEvaluation/tripbooking.metadata.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/.vs/ProjectEvaluation/tripbooking.metadata.v7.bin -------------------------------------------------------------------------------- /TripBooking/.vs/ProjectEvaluation/tripbooking.projects.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/.vs/ProjectEvaluation/tripbooking.projects.v7.bin -------------------------------------------------------------------------------- /TripBooking/.vs/TripBooking/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/.vs/TripBooking/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /TripBooking/.vs/TripBooking/FileContentIndex/6c85a10f-fd12-4b73-afd9-f6a29ab173ee.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/.vs/TripBooking/FileContentIndex/6c85a10f-fd12-4b73-afd9-f6a29ab173ee.vsidx -------------------------------------------------------------------------------- /TripBooking/.vs/TripBooking/FileContentIndex/ac664a5c-6464-40fa-9696-de04fc7977b6.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/.vs/TripBooking/FileContentIndex/ac664a5c-6464-40fa-9696-de04fc7977b6.vsidx -------------------------------------------------------------------------------- /TripBooking/.vs/TripBooking/FileContentIndex/bac06c3d-1823-4e86-adcf-08698ebcb423.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/.vs/TripBooking/FileContentIndex/bac06c3d-1823-4e86-adcf-08698ebcb423.vsidx -------------------------------------------------------------------------------- /TripBooking/.vs/TripBooking/FileContentIndex/cb831e4a-e3ab-47c1-9e11-9f7cf296eb42.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/.vs/TripBooking/FileContentIndex/cb831e4a-e3ab-47c1-9e11-9f7cf296eb42.vsidx -------------------------------------------------------------------------------- /TripBooking/.vs/TripBooking/FileContentIndex/df0e1774-e5ee-4f5b-bc38-fce1f429b625.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/.vs/TripBooking/FileContentIndex/df0e1774-e5ee-4f5b-bc38-fce1f429b625.vsidx -------------------------------------------------------------------------------- /TripBooking/.vs/TripBooking/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/.vs/TripBooking/v17/.futdcache.v1 -------------------------------------------------------------------------------- /TripBooking/.vs/TripBooking/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/.vs/TripBooking/v17/.futdcache.v2 -------------------------------------------------------------------------------- /TripBooking/.vs/TripBooking/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/.vs/TripBooking/v17/.suo -------------------------------------------------------------------------------- /TripBooking/Booking.Saga.Consumer/SendEndpoint.cs: -------------------------------------------------------------------------------- 1 | using MassTransit; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Booking.Saga.Consumer 9 | { 10 | public class SendEndpoint 11 | { 12 | public static ISendEndpoint Endpoint { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /TripBooking/CarService.Application/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "CarService.Application": { 4 | "commandName": "Project", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | }, 9 | "applicationUrl": "https://localhost:55612;http://localhost:55616" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/CarService.Application/bin/Debug/net5.0/CarService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Application/bin/Debug/net5.0/CarService.Application.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Application/bin/Debug/net5.0/CarService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Application/bin/Debug/net5.0/CarService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/CarService.Application/bin/Debug/net5.0/CarService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Application/bin/Debug/net5.0/CarService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Application/bin/Debug/net5.0/CarService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Application/bin/Debug/net5.0/CarService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/CarService.Application/obj/CarService.Application.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Application/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d4619db743700dc38f2338d47ffc8a3480e2b1f5 2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.assets.cache -------------------------------------------------------------------------------- /TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 86202336db4dbf99a6de18afbd0f073e8e9fac6c 2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Application/obj/Debug/net5.0/CarService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/CarService.Application/obj/Debug/net5.0/ref/CarService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Application/obj/Debug/net5.0/ref/CarService.Application.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Application/obj/Debug/net5.0/refint/CarService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Application/obj/Debug/net5.0/refint/CarService.Application.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Consumer/bin/Debug/net5.0/CarService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Consumer/bin/Debug/net5.0/CarService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Consumer/bin/Debug/net5.0/CarService.Consumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Consumer/bin/Debug/net5.0/CarService.Consumer.pdb -------------------------------------------------------------------------------- /TripBooking/CarService.Consumer/obj/Debug/net5.0/CarService.Consumer.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fe7cbaaaad0d42821b0f6f4bc7b56b5f571c9727 2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Consumer/obj/Debug/net5.0/CarService.Consumer.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Consumer/obj/Debug/net5.0/CarService.Consumer.assets.cache -------------------------------------------------------------------------------- /TripBooking/CarService.Consumer/obj/Debug/net5.0/CarService.Consumer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Consumer/obj/Debug/net5.0/CarService.Consumer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/CarService.Consumer/obj/Debug/net5.0/CarService.Consumer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7de1f4afea6e2cda59df88e223104d0cd5fbda62 2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Consumer/obj/Debug/net5.0/CarService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Consumer/obj/Debug/net5.0/CarService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Consumer/obj/Debug/net5.0/CarService.Consumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Consumer/obj/Debug/net5.0/CarService.Consumer.pdb -------------------------------------------------------------------------------- /TripBooking/CarService.Consumer/obj/Debug/net5.0/ref/CarService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Consumer/obj/Debug/net5.0/ref/CarService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Consumer/obj/Debug/net5.0/refint/CarService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Consumer/obj/Debug/net5.0/refint/CarService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/CarService.Domain.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "CarService.Domain": { 4 | "commandName": "Project", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | }, 9 | "applicationUrl": "https://localhost:55625;http://localhost:55628" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/bin/Debug/net5.0/CarService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Domain/bin/Debug/net5.0/CarService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/bin/Debug/net5.0/CarService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Domain/bin/Debug/net5.0/CarService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/obj/CarService.Domain.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/obj/Debug/net5.0/CarService.Domain.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 997792e9ba8c96d50b32b62568bd51720fd0f2ee 2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/obj/Debug/net5.0/CarService.Domain.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Domain/obj/Debug/net5.0/CarService.Domain.assets.cache -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/obj/Debug/net5.0/CarService.Domain.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Domain/obj/Debug/net5.0/CarService.Domain.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/obj/Debug/net5.0/CarService.Domain.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d5f5208511b1168a93c42b6bd5a35d9f7112e851 2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/obj/Debug/net5.0/CarService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Domain/obj/Debug/net5.0/CarService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/obj/Debug/net5.0/CarService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Domain/obj/Debug/net5.0/CarService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/obj/Debug/net5.0/ref/CarService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Domain/obj/Debug/net5.0/ref/CarService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Domain/obj/Debug/net5.0/refint/CarService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Domain/obj/Debug/net5.0/refint/CarService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "CarService.Infrastructure": { 4 | "commandName": "Project", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | }, 9 | "applicationUrl": "https://localhost:55606;http://localhost:55620" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Application.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Infrastructure.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Stefan Djokic\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Stefan Djokic\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/bin/Debug/net5.0/CarService.Infrastructure.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/CarService.Infrastructure.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f197b58eb61d0a09fc9e2cbcd1ce16ce40468107 2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.assets.cache -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9708ec0ccc2655611b26bce6049809c27cde4b94 2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 1f53ced004cd7300373c9b7060a692d14bae17bf 2 | -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/obj/Debug/net5.0/CarService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/Debug/net5.0/ref/CarService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/obj/Debug/net5.0/ref/CarService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/CarService.Infrastructure/obj/Debug/net5.0/refint/CarService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService.Infrastructure/obj/Debug/net5.0/refint/CarService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/CarService/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/CarService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/CarService.Application.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/CarService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/CarService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/CarService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/CarService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/CarService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/CarService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/CarService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/CarService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/CarService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/CarService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/CarService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/CarService.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/CarService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/CarService.exe -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/CarService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/CarService.pdb -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/CarService.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Stefan Djokic\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Stefan Djokic\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Humanizer.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /TripBooking/CarService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/CarService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ca2446edfd4f3398dcdaebe522f4678612e3f55e 2 | -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/CarService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/obj/Debug/net5.0/CarService.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/CarService.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | fb46170f5832a2b5eb0d41b0ecb7e95c22e26ecb 2 | -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/CarService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/obj/Debug/net5.0/CarService.assets.cache -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/CarService.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/obj/Debug/net5.0/CarService.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/CarService.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/obj/Debug/net5.0/CarService.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/CarService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1eda0b606924befcc85d2cab456b3547affe3fb5 2 | -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/CarService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/obj/Debug/net5.0/CarService.dll -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/CarService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | f7c599fbdbb40b9d31ffb9e4bdab984ba66efa2f 2 | -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/CarService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/obj/Debug/net5.0/CarService.pdb -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/ref/CarService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/obj/Debug/net5.0/ref/CarService.dll -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/refint/CarService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/obj/Debug/net5.0/refint/CarService.dll -------------------------------------------------------------------------------- /TripBooking/CarService/obj/Debug/net5.0/staticwebassets/CarService.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/CarService/obj/Debug/net5.0/staticwebassets/CarService.StaticWebAssets.Manifest.cache -------------------------------------------------------------------------------- /TripBooking/Contacts/BookingRequest.cs: -------------------------------------------------------------------------------- 1 | namespace Contracts; 2 | 3 | public class BookingRequest 4 | { 5 | public HotelBookingRequest HotelBookingRequest { get; set; } 6 | public FlightBookingRequest FlightBookingRequest { get; set; } 7 | public CarBookingRequest CarBookingRequest { get; set; } 8 | } -------------------------------------------------------------------------------- /TripBooking/Contacts/Contracts.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/bin/Debug/net5.0/FlightService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Application/bin/Debug/net5.0/FlightService.Application.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/bin/Debug/net5.0/FlightService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Application/bin/Debug/net5.0/FlightService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/bin/Debug/net5.0/FlightService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Application/bin/Debug/net5.0/FlightService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/bin/Debug/net5.0/FlightService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Application/bin/Debug/net5.0/FlightService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 827bc567f00bfbe9adbe57d29ff4958fc6b393ad 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.assets.cache -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ee62bedac46d8d8a16d4c8e585cf3f088c009976 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Application/obj/Debug/net5.0/FlightService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/obj/Debug/net5.0/ref/FlightService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Application/obj/Debug/net5.0/ref/FlightService.Application.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/obj/Debug/net5.0/refint/FlightService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Application/obj/Debug/net5.0/refint/FlightService.Application.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Application/obj/FlightService.Application.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Consumer/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "FlightService.Consumer": { 4 | "commandName": "Project", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | }, 9 | "applicationUrl": "https://localhost:55611;http://localhost:55613" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/FlightService.Consumer/bin/Debug/net5.0/FlightService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Consumer/bin/Debug/net5.0/FlightService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Consumer/bin/Debug/net5.0/FlightService.Consumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Consumer/bin/Debug/net5.0/FlightService.Consumer.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService.Consumer/obj/Debug/net5.0/FlightService.Consumer.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b9906feda608f163fcc739f0ad1a545d369d7791 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Consumer/obj/Debug/net5.0/FlightService.Consumer.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Consumer/obj/Debug/net5.0/FlightService.Consumer.assets.cache -------------------------------------------------------------------------------- /TripBooking/FlightService.Consumer/obj/Debug/net5.0/FlightService.Consumer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Consumer/obj/Debug/net5.0/FlightService.Consumer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/FlightService.Consumer/obj/Debug/net5.0/FlightService.Consumer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c351ef7fde590ab26e5a9a91fb655195279624d5 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Consumer/obj/Debug/net5.0/FlightService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Consumer/obj/Debug/net5.0/FlightService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Consumer/obj/Debug/net5.0/FlightService.Consumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Consumer/obj/Debug/net5.0/FlightService.Consumer.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService.Consumer/obj/Debug/net5.0/ref/FlightService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Consumer/obj/Debug/net5.0/ref/FlightService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Consumer/obj/Debug/net5.0/refint/FlightService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Consumer/obj/Debug/net5.0/refint/FlightService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/FlightService.Domain.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net6.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "FlightService.Domain": { 4 | "commandName": "Project", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | }, 9 | "applicationUrl": "https://localhost:55607;http://localhost:55614" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/bin/Debug/net5.0/FlightService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Domain/bin/Debug/net5.0/FlightService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/bin/Debug/net5.0/FlightService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Domain/bin/Debug/net5.0/FlightService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/obj/Debug/net5.0/FlightService.Domain.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e21582cf6505a48381aa415b41f5753195b486aa 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/obj/Debug/net5.0/FlightService.Domain.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Domain/obj/Debug/net5.0/FlightService.Domain.assets.cache -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/obj/Debug/net5.0/FlightService.Domain.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Domain/obj/Debug/net5.0/FlightService.Domain.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/obj/Debug/net5.0/FlightService.Domain.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | db23f0f9559259c7940697e94b885f0eeee56fc6 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/obj/Debug/net5.0/FlightService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Domain/obj/Debug/net5.0/FlightService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/obj/Debug/net5.0/FlightService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Domain/obj/Debug/net5.0/FlightService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/obj/Debug/net5.0/ref/FlightService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Domain/obj/Debug/net5.0/ref/FlightService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/obj/Debug/net5.0/refint/FlightService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Domain/obj/Debug/net5.0/refint/FlightService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Domain/obj/FlightService.Domain.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Application.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Infrastructure.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Stefan Djokic\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Stefan Djokic\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/bin/Debug/net5.0/FlightService.Infrastructure.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 31a1228b48f4a4310f07855cc14fdb9b4b21d5a5 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.assets.cache -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1eec07e0ae6ebe56dbcde889d99b3c283fdf9351 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 12504b9bb410a1506575b5554633d8058134e995 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/FlightService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/ref/FlightService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/ref/FlightService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/refint/FlightService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService.Infrastructure/obj/Debug/net5.0/refint/FlightService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/FlightService.Infrastructure/obj/FlightService.Infrastructure.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/FlightService/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/FlightService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/FlightService.Application.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/FlightService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/FlightService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/FlightService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/FlightService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/FlightService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/FlightService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/FlightService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/FlightService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/FlightService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/FlightService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/FlightService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/FlightService.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/FlightService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/FlightService.exe -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/FlightService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/FlightService.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/FlightService.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Stefan Djokic\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Stefan Djokic\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Humanizer.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/FlightService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | adf7dcab09b82154dad62019393c21e1251d847b 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/FlightService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/obj/Debug/net5.0/FlightService.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/FlightService.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 7d081f8c23dbfa1b900c4912cf92526a2e3ea85c 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/FlightService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/obj/Debug/net5.0/FlightService.assets.cache -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/FlightService.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/obj/Debug/net5.0/FlightService.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/FlightService.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/obj/Debug/net5.0/FlightService.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/FlightService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5750d9a9a7d821aaa9c0aa05821f59cc95906762 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/FlightService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/obj/Debug/net5.0/FlightService.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/FlightService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | f0a39caf39131622cc3c33bda8587431beb4cf83 2 | -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/FlightService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/obj/Debug/net5.0/FlightService.pdb -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/ref/FlightService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/obj/Debug/net5.0/ref/FlightService.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/refint/FlightService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/obj/Debug/net5.0/refint/FlightService.dll -------------------------------------------------------------------------------- /TripBooking/FlightService/obj/Debug/net5.0/staticwebassets/FlightService.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/FlightService/obj/Debug/net5.0/staticwebassets/FlightService.StaticWebAssets.Manifest.cache -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "HotelService.Application": { 4 | "commandName": "Project", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | }, 9 | "applicationUrl": "https://localhost:55615;http://localhost:55622" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/bin/Debug/net5.0/HotelService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/bin/Debug/net5.0/HotelService.Application.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/bin/Debug/net5.0/HotelService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/bin/Debug/net5.0/HotelService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/bin/Debug/net5.0/HotelService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/bin/Debug/net5.0/HotelService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/bin/Debug/net5.0/HotelService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/bin/Debug/net5.0/HotelService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/bin/Debug/net5.0/Saga.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/bin/Debug/net5.0/Saga.Shared.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/bin/Debug/net5.0/Saga.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/bin/Debug/net5.0/Saga.Shared.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c96b7ff1fbb33b169095f8f23c8a0a720ec2ef4a 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.assets.cache -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c030a247639409d952cb9a5a06a98c2f5314e082 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/obj/Debug/net5.0/HotelService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/obj/Debug/net5.0/ref/HotelService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/obj/Debug/net5.0/ref/HotelService.Application.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/obj/Debug/net5.0/refint/HotelService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Application/obj/Debug/net5.0/refint/HotelService.Application.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Application/obj/HotelService.Application.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "HotelService.Consumer": { 4 | "commandName": "Project", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | }, 9 | "applicationUrl": "https://localhost:55608;http://localhost:55617" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/bin/Debug/net5.0/HotelService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Consumer/bin/Debug/net5.0/HotelService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/bin/Debug/net5.0/HotelService.Consumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Consumer/bin/Debug/net5.0/HotelService.Consumer.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/obj/Debug/net5.0/HotelService.Consumer.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 585ecf2b58a6468677e44893cff329a88c1f55e1 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/obj/Debug/net5.0/HotelService.Consumer.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Consumer/obj/Debug/net5.0/HotelService.Consumer.assets.cache -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/obj/Debug/net5.0/HotelService.Consumer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Consumer/obj/Debug/net5.0/HotelService.Consumer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/obj/Debug/net5.0/HotelService.Consumer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | dc236a6488127a372c8826a2c0184e2d13f0d24c 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/obj/Debug/net5.0/HotelService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Consumer/obj/Debug/net5.0/HotelService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/obj/Debug/net5.0/HotelService.Consumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Consumer/obj/Debug/net5.0/HotelService.Consumer.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/obj/Debug/net5.0/ref/HotelService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Consumer/obj/Debug/net5.0/ref/HotelService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Consumer/obj/Debug/net5.0/refint/HotelService.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Consumer/obj/Debug/net5.0/refint/HotelService.Consumer.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/Enums/BookingStatus.cs: -------------------------------------------------------------------------------- 1 | namespace HotelService.Domain.Enums 2 | { 3 | public enum BookingStatus 4 | { 5 | WaitingForFlight = 1, 6 | WaitingForCar = 2, 7 | Failed = 3, 8 | Success = 4 9 | } 10 | } -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/HotelService.Domain.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "HotelService.Domain": { 4 | "commandName": "Project", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | }, 9 | "applicationUrl": "https://localhost:55631;http://localhost:55632" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/bin/Debug/net5.0/HotelService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Domain/bin/Debug/net5.0/HotelService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/bin/Debug/net5.0/HotelService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Domain/bin/Debug/net5.0/HotelService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/bin/Debug/net5.0/Saga.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Domain/bin/Debug/net5.0/Saga.Shared.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/bin/Debug/net5.0/Saga.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Domain/bin/Debug/net5.0/Saga.Shared.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e5769ac8ce8ee21e970d6fcc4221118a42921170 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.assets.cache -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c24b40f3eb94d66ccf309c84c81b86db131d1413 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Domain/obj/Debug/net5.0/HotelService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/obj/Debug/net5.0/ref/HotelService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Domain/obj/Debug/net5.0/ref/HotelService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/obj/Debug/net5.0/refint/HotelService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Domain/obj/Debug/net5.0/refint/HotelService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Domain/obj/HotelService.Domain.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Application.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Infrastructure.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Stefan Djokic\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Stefan Djokic\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/HotelService.Infrastructure.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/Saga.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/Saga.Shared.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/Saga.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/bin/Debug/net5.0/Saga.Shared.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 12a1d859b56c22585bc3c4a039157e33662e645e 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.assets.cache -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | cc4de9531caf8bf274a088763cc4cf050f9decef 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | cc57ce9fc7f1aad8011753c1c617e185848392e3 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/HotelService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/ref/HotelService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/ref/HotelService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/refint/HotelService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService.Infrastructure/obj/Debug/net5.0/refint/HotelService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/HotelService.Infrastructure/obj/HotelService.Infrastructure.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/HotelService/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/HotelService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/HotelService.Application.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/HotelService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/HotelService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/HotelService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/HotelService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/HotelService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/HotelService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/HotelService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/HotelService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/HotelService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/HotelService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/HotelService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/HotelService.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/HotelService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/HotelService.exe -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/HotelService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/HotelService.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/HotelService.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Stefan Djokic\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Stefan Djokic\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Humanizer.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Saga.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Saga.Shared.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Saga.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Saga.Shared.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/HotelService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | af1aa3120dc3f6376242292fced743f4069e04a2 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/HotelService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/obj/Debug/net5.0/HotelService.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/HotelService.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 55a22c8e058a4b72c1284605557290994549c62d 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/HotelService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/obj/Debug/net5.0/HotelService.assets.cache -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/HotelService.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/obj/Debug/net5.0/HotelService.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/HotelService.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/obj/Debug/net5.0/HotelService.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/HotelService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5ae0045a125093181ec7633f1dc44edad36c0c9b 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/HotelService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/obj/Debug/net5.0/HotelService.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/HotelService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 884ba4499d92aa8012f461447c215433eaa73ed5 2 | -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/HotelService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/obj/Debug/net5.0/HotelService.pdb -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/ref/HotelService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/obj/Debug/net5.0/ref/HotelService.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/refint/HotelService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/obj/Debug/net5.0/refint/HotelService.dll -------------------------------------------------------------------------------- /TripBooking/HotelService/obj/Debug/net5.0/staticwebassets/HotelService.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/HotelService/obj/Debug/net5.0/staticwebassets/HotelService.StaticWebAssets.Manifest.cache -------------------------------------------------------------------------------- /TripBooking/Notification.Test/Notification.Test.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/bin/Debug/net5.0/NotificationService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Application/bin/Debug/net5.0/NotificationService.Application.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/bin/Debug/net5.0/NotificationService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Application/bin/Debug/net5.0/NotificationService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/bin/Debug/net5.0/NotificationService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Application/bin/Debug/net5.0/NotificationService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/bin/Debug/net5.0/NotificationService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Application/bin/Debug/net5.0/NotificationService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8ea77c98ecb5f8bd082703ae1cfc473e6cba4b74 2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.assets.cache -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b8144fb362a19e69a55f96ed03e472c05deff13e 2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Application/obj/Debug/net5.0/NotificationService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/obj/Debug/net5.0/ref/NotificationService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Application/obj/Debug/net5.0/ref/NotificationService.Application.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/obj/Debug/net5.0/refint/NotificationService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Application/obj/Debug/net5.0/refint/NotificationService.Application.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Application/obj/NotificationService.Application.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Consumer/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Consumer/obj/NotificationService.Consumer.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/Entities/Notification.cs: -------------------------------------------------------------------------------- 1 | using NotificationService.Domain.Common; 2 | using System; 3 | 4 | namespace NotificationService.Domain.Entities 5 | { 6 | public class Notification : AuditableEntity 7 | { 8 | public int Id { get; set; } 9 | public string Email { get; set; } 10 | public DateTime DateSent { get; set; } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/NotificationService.Domain.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "NotificationService.Domain": { 4 | "commandName": "Project", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | }, 9 | "applicationUrl": "https://localhost:55633;http://localhost:55634" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/bin/Debug/net5.0/NotificationService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Domain/bin/Debug/net5.0/NotificationService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/bin/Debug/net5.0/NotificationService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Domain/bin/Debug/net5.0/NotificationService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/obj/Debug/net5.0/NotificationService.Domain.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 52fd8dda8b76babbd442d8353dce18956a06057e 2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/obj/Debug/net5.0/NotificationService.Domain.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Domain/obj/Debug/net5.0/NotificationService.Domain.assets.cache -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/obj/Debug/net5.0/NotificationService.Domain.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Domain/obj/Debug/net5.0/NotificationService.Domain.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/obj/Debug/net5.0/NotificationService.Domain.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4144bd144cad9fd86a68fa0f32bad3c10d1771df 2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/obj/Debug/net5.0/NotificationService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Domain/obj/Debug/net5.0/NotificationService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/obj/Debug/net5.0/NotificationService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Domain/obj/Debug/net5.0/NotificationService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/obj/Debug/net5.0/ref/NotificationService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Domain/obj/Debug/net5.0/ref/NotificationService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/obj/Debug/net5.0/refint/NotificationService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Domain/obj/Debug/net5.0/refint/NotificationService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Domain/obj/NotificationService.Domain.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Application.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Infrastructure.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Stefan Djokic\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Stefan Djokic\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/bin/Debug/net5.0/NotificationService.Infrastructure.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f21c598cab1f3ecfceb96180d8c5e15733570a34 2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.assets.cache -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 323038f9feba6aeffaeba7fc27401af8ea619fe9 2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 63f93feab78e36bc2e8c215e0ff1a4628c7ad614 2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/NotificationService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/ref/NotificationService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/ref/NotificationService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/refint/NotificationService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService.Infrastructure/obj/Debug/net5.0/refint/NotificationService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService.Infrastructure/obj/NotificationService.Infrastructure.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Humanizer.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Application.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Application.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Domain.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Domain.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Infrastructure.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.Infrastructure.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.exe -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/NotificationService.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Stefan Djokic\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Stefan Djokic\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c94bf3fc3284dcf504d2f05339f68dfebcffbed8 2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 338c9f540746138f65f2024cd270db37272c9976 2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.assets.cache -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.csproj.CopyComplete -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 595438faba3dcbcf004bb442bfc1d303587b72bc 2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 19e98a232d04decab6a53023b4420c2c763ff205 2 | -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/obj/Debug/net5.0/NotificationService.pdb -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/ref/NotificationService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/obj/Debug/net5.0/ref/NotificationService.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/refint/NotificationService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/obj/Debug/net5.0/refint/NotificationService.dll -------------------------------------------------------------------------------- /TripBooking/NotificationService/obj/Debug/net5.0/staticwebassets/NotificationService.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/NotificationService/obj/Debug/net5.0/staticwebassets/NotificationService.StaticWebAssets.Manifest.cache -------------------------------------------------------------------------------- /TripBooking/Saga.Core/Constants/SagaConstants.cs: -------------------------------------------------------------------------------- 1 | namespace Saga.Core.Constants 2 | { 3 | public static class SagaConstants 4 | { 5 | public const string SAGAQUEUENAME = "BookingSagaQueue"; 6 | } 7 | } -------------------------------------------------------------------------------- /TripBooking/Saga.Core/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Saga.Core": { 4 | "commandName": "Project", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | }, 9 | "applicationUrl": "https://localhost:55629;http://localhost:55630" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/Saga.Core/Settings/Abstract/ISettings.cs: -------------------------------------------------------------------------------- 1 | namespace Saga.Core.Abstract 2 | { 3 | public interface ISettings 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /TripBooking/Saga.Core/bin/Debug/net5.0/Saga.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Core/bin/Debug/net5.0/Saga.Core.dll -------------------------------------------------------------------------------- /TripBooking/Saga.Core/bin/Debug/net5.0/Saga.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Core/bin/Debug/net5.0/Saga.Core.pdb -------------------------------------------------------------------------------- /TripBooking/Saga.Core/obj/Debug/net5.0/Saga.Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c9fe36fbf72a54ca99eba4540a20767288248c14 2 | -------------------------------------------------------------------------------- /TripBooking/Saga.Core/obj/Debug/net5.0/Saga.Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Core/obj/Debug/net5.0/Saga.Core.assets.cache -------------------------------------------------------------------------------- /TripBooking/Saga.Core/obj/Debug/net5.0/Saga.Core.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Core/obj/Debug/net5.0/Saga.Core.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/Saga.Core/obj/Debug/net5.0/Saga.Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d537365a941ca59d9c261a2d68d9568aabe45df0 2 | -------------------------------------------------------------------------------- /TripBooking/Saga.Core/obj/Debug/net5.0/Saga.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Core/obj/Debug/net5.0/Saga.Core.dll -------------------------------------------------------------------------------- /TripBooking/Saga.Core/obj/Debug/net5.0/Saga.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Core/obj/Debug/net5.0/Saga.Core.pdb -------------------------------------------------------------------------------- /TripBooking/Saga.Core/obj/Debug/net5.0/ref/Saga.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Core/obj/Debug/net5.0/ref/Saga.Core.dll -------------------------------------------------------------------------------- /TripBooking/Saga.Core/obj/Debug/net5.0/refint/Saga.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Core/obj/Debug/net5.0/refint/Saga.Core.dll -------------------------------------------------------------------------------- /TripBooking/Saga.Core/obj/Saga.Core.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/Common/IMessage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Saga.Shared.Common 8 | { 9 | public interface IMessage 10 | { 11 | Guid CorrelationId { get; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/Consumers/Abstract/IRollbackHotelBookingEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Saga.Shared.Consumers.Abstract 4 | { 5 | public interface IRollbackHotelBookingEvent 6 | { 7 | int BookingId { get; } 8 | DateTime CreatedDate { get; } 9 | Guid CorrelationId { get; } 10 | } 11 | } -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Saga.Shared": { 4 | "commandName": "Project", 5 | "launchBrowser": true, 6 | "environmentVariables": { 7 | "ASPNETCORE_ENVIRONMENT": "Development" 8 | }, 9 | "applicationUrl": "https://localhost:55626;http://localhost:55627" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/bin/Debug/net5.0/Saga.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Shared/bin/Debug/net5.0/Saga.Shared.dll -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/bin/Debug/net5.0/Saga.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Shared/bin/Debug/net5.0/Saga.Shared.pdb -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] 5 | -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/obj/Debug/net5.0/Saga.Shared.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d0a5952714499148731dfb13fa1d7c990f8644d4 2 | -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/obj/Debug/net5.0/Saga.Shared.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Shared/obj/Debug/net5.0/Saga.Shared.assets.cache -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/obj/Debug/net5.0/Saga.Shared.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Shared/obj/Debug/net5.0/Saga.Shared.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/obj/Debug/net5.0/Saga.Shared.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c61f1141a3284db689d10e94588d143e68fefe1c 2 | -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/obj/Debug/net5.0/Saga.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Shared/obj/Debug/net5.0/Saga.Shared.dll -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/obj/Debug/net5.0/Saga.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Shared/obj/Debug/net5.0/Saga.Shared.pdb -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/obj/Debug/net5.0/ref/Saga.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Shared/obj/Debug/net5.0/ref/Saga.Shared.dll -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/obj/Debug/net5.0/refint/Saga.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/Saga.Shared/obj/Debug/net5.0/refint/Saga.Shared.dll -------------------------------------------------------------------------------- /TripBooking/Saga.Shared/obj/Saga.Shared.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TripBooking/WebApp/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace WebApp.Models 2 | { 3 | public class ErrorViewModel 4 | { 5 | public string? RequestId { get; set; } 6 | 7 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 8 | } 9 | } -------------------------------------------------------------------------------- /TripBooking/WebApp/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |

@ViewData["Title"]

5 | 6 |

Use this page to detail your site's privacy policy.

7 | -------------------------------------------------------------------------------- /TripBooking/WebApp/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /TripBooking/WebApp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using WebApp 2 | @using WebApp.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /TripBooking/WebApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /TripBooking/WebApp/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /TripBooking/WebApp/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /TripBooking/WebApp/wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-size: 14px; 3 | } 4 | 5 | @media (min-width: 768px) { 6 | html { 7 | font-size: 16px; 8 | } 9 | } 10 | 11 | html { 12 | position: relative; 13 | min-height: 100%; 14 | } 15 | 16 | body { 17 | margin-bottom: 60px; 18 | } -------------------------------------------------------------------------------- /TripBooking/WebApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/WebApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /TripBooking/WebApp/wwwroot/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanTheCode/Distributed-Transactions-Saga-Pattern/36d269b264b3ae5784b49590d78b5cef458755e5/TripBooking/WebApp/wwwroot/img/background.jpg --------------------------------------------------------------------------------