├── .dockerignore ├── .gitattributes ├── .gitignore ├── Certificates └── White_Purple_Certificate_Authority.crt ├── Database ├── Hostel.Query │ ├── Hostel.Query.refactorlog │ ├── Hostel.Query.sqlproj │ └── dbo │ │ └── Tables │ │ └── Hostel_Tenants.sql └── Hostel │ ├── Hostel.refactorlog │ ├── Hostel.sqlproj │ ├── Script.RoleType.sql │ └── dbo │ ├── Stored Procedures │ ├── ConstructHostel.sql │ ├── CreateBathRoom.sql │ ├── CreateFloor.sql │ ├── CreateKitchen.sql │ ├── CreatePerson.sql │ ├── CreatePerson_Birthday.sql │ ├── CreateReseervoir.sql │ ├── CreateRoom.sql │ ├── CreateSepticTank.sql │ ├── CreateToilet.sql │ ├── InstallBathRoomSensor.sql │ ├── InstallKitchenSensor.sql │ ├── InstallReservoirSensor.sql │ ├── InstallRoomSensor.sql │ ├── InstallSepticSensor.sql │ └── InstallToiletSensor.sql │ └── Tables │ ├── Hostel.sql │ ├── Hostel_Floor.sql │ ├── Hostel_Floor_Bath_Room.sql │ ├── Hostel_Floor_Bath_Room_Sensors.sql │ ├── Hostel_Floor_Bath_Room_Sensors_Reading.sql │ ├── Hostel_Floor_Kitchen.sql │ ├── Hostel_Floor_Kitchen_Sensors.sql │ ├── Hostel_Floor_Kitchen_Sensors_Reading.sql │ ├── Hostel_Floor_Rooms.sql │ ├── Hostel_Floor_Rooms_Sensors.sql │ ├── Hostel_Floor_Rooms_Tenancy.sql │ ├── Hostel_Floor_Rooms_Tenants.sql │ ├── Hostel_Floor_Toilets.sql │ ├── Hostel_Floor_Toilets_Sensors.sql │ ├── Hostel_Floor_Toilets_Sensors_Reading.sql │ ├── Hostel_Persons.sql │ ├── Hostel_Persons_Birthday.sql │ ├── Hostel_Roles.sql │ ├── Hostel_Sensor_Reading_Types.sql │ ├── Hostel_Sensors.sql │ ├── Hostel_Septic_Tank.sql │ ├── Hostel_Septic_Tank_Sensors.sql │ ├── Hostel_Septic_Tank_Sensors_Reading.sql │ ├── Hostel_Water_Reservoir.sql │ ├── Hostel_Water_Reservoir_Sensors.sql │ └── Hostel_Water_Reservoir_Sensors_Reading.sql ├── Domain ├── Commands │ ├── Hostel.Command │ │ ├── ConstructHostel.cs │ │ ├── Create │ │ │ ├── CreateBathRoom.cs │ │ │ ├── CreateFloor.cs │ │ │ ├── CreateKitchen.cs │ │ │ ├── CreatePerson.cs │ │ │ ├── CreateRoom.cs │ │ │ ├── CreateSepticTank.cs │ │ │ ├── CreateToilet.cs │ │ │ └── CreateWaterReservoir.cs │ │ ├── EvictTenant.cs │ │ ├── Hostel.Command.csproj │ │ ├── InstallSensor.cs │ │ ├── Internal │ │ │ ├── LayoutBathRoom.cs │ │ │ ├── LayoutFloor.cs │ │ │ ├── LayoutKitchen.cs │ │ │ ├── LayoutRoom.cs │ │ │ └── LayoutToilet.cs │ │ ├── RentOutRoom.cs │ │ ├── SepticTank │ │ │ ├── NotifySepticTank.cs │ │ │ └── ReadSepticTank.cs │ │ └── StateChange │ │ │ └── Floor │ │ │ ├── StoreFloorStateChange.cs │ │ │ └── Units │ │ │ ├── StoreBathRoomStateChange.cs │ │ │ ├── StoreKitchenStateChange.cs │ │ │ ├── StoreRoomStateChange.cs │ │ │ └── StoreToiletStateChange.cs │ ├── MassTransit.Command │ │ ├── MassTransit.Command.csproj │ │ └── MassTransitCommand.cs │ ├── Notifier.Command │ │ ├── Class1.cs │ │ └── Notifier.Command.csproj │ ├── Owner.Command │ │ ├── Class1.cs │ │ └── Owner.Command.csproj │ ├── Reminder.Command │ │ ├── Class1.cs │ │ └── Reminder.Command.csproj │ └── Tenant.Command │ │ ├── Class1.cs │ │ └── Tenant.Command.csproj ├── Entities │ ├── Hostel.Entity │ │ ├── Floor │ │ │ ├── BathRoomManagerActor.cs │ │ │ ├── FloorActor.cs │ │ │ ├── RoomManagerActor.cs │ │ │ ├── ToiletManagerActor.cs │ │ │ └── Units │ │ │ │ ├── BathRoomActor.cs │ │ │ │ ├── KitchenActor.cs │ │ │ │ ├── RoomActor.cs │ │ │ │ └── ToiletActor.cs │ │ ├── Handler │ │ │ ├── Floor │ │ │ │ ├── BathRoomManagerHandler.cs │ │ │ │ ├── RoomManagerHandler.cs │ │ │ │ ├── ToiletManagerHandler.cs │ │ │ │ └── Units │ │ │ │ │ ├── BathRoomHandler.cs │ │ │ │ │ ├── KitchenHandler.cs │ │ │ │ │ ├── RoomHandler.cs │ │ │ │ │ └── ToiletHandler.cs │ │ │ ├── FloorHandler.cs │ │ │ ├── HostelManagerHandler.cs │ │ │ ├── Sensor │ │ │ │ ├── SensorHandler.cs │ │ │ │ └── SensorManagerHandler.cs │ │ │ ├── SepticTankHandler.cs │ │ │ └── WaterReservoirHandler.cs │ │ ├── Hostel.Entity.csproj │ │ ├── HostelManagerActor.cs │ │ ├── Sensor │ │ │ ├── SensorActor.cs │ │ │ └── SensorManagerActor.cs │ │ ├── SepticTankActor.cs │ │ └── WaterReservoirActor.cs │ ├── Notifier.Entity │ │ ├── Class1.cs │ │ └── Notifier.Entity.csproj │ ├── Owner.Entity │ │ ├── Owner.Entity.csproj │ │ ├── OwnerActor.cs │ │ └── OwnerManagerActor.cs │ ├── Reminder.Entity │ │ ├── Class1.cs │ │ └── Reminder.Entity.csproj │ └── Tenant.Entity │ │ ├── Class1.cs │ │ └── Tenant.Entity.csproj ├── Events │ ├── Hostel.Event │ │ ├── ConstructedHostel.cs │ │ ├── Created │ │ │ ├── CreatedBathRoom.cs │ │ │ ├── CreatedFloor.cs │ │ │ ├── CreatedKitchen.cs │ │ │ ├── CreatedRoom.cs │ │ │ ├── CreatedSepticTank.cs │ │ │ ├── CreatedToilet.cs │ │ │ ├── CreatedWaterReservoir.cs │ │ │ └── PersonCreated.cs │ │ ├── EvictedTenant.cs │ │ ├── Floor │ │ │ └── RentedOutRoom.cs │ │ ├── Hostel.Event.csproj │ │ ├── InstalledSensor.cs │ │ └── SepticTank │ │ │ └── SepticTankFillingUpEvent.cs │ ├── MassTransit.Event │ │ ├── MassTransit.Event.csproj │ │ └── MassTransitEvent.cs │ ├── Notifier.Event │ │ ├── Class1.cs │ │ └── Notifier.Event.csproj │ ├── Owner.Event │ │ ├── Class1.cs │ │ └── Owner.Event.csproj │ ├── Reminder.Event │ │ ├── Class1.cs │ │ └── Reminder.Event.csproj │ ├── Sensor.Event │ │ ├── Sensor.Event.csproj │ │ └── SensorInstalled.cs │ └── Tenant.Event │ │ ├── Class1.cs │ │ └── Tenant.Event.csproj ├── Models │ ├── Hostel.Model │ │ ├── Construction.cs │ │ ├── Floor.cs │ │ ├── Hostel.Model.csproj │ │ ├── RentOut.cs │ │ ├── Sensor.cs │ │ ├── SepticTank │ │ │ ├── NotifySepticTank.cs │ │ │ └── SepticTankReading.cs │ │ └── Tenant │ │ │ ├── Birthday.cs │ │ │ ├── Issue.cs │ │ │ ├── Tenancy.cs │ │ │ └── Tenant.cs │ ├── Notifier.Model │ │ ├── Class1.cs │ │ └── Notifier.Model.csproj │ ├── Owner.Model │ │ ├── Class1.cs │ │ └── Owner.Model.csproj │ ├── Reminder.Model │ │ ├── Class1.cs │ │ └── Reminder.Model.csproj │ └── Tenant.Model │ │ ├── Class1.cs │ │ └── Tenant.Model.csproj ├── Queries │ ├── Hostel.Query │ │ ├── Hostel.Query.csproj │ │ └── ManagerQueryActor.cs │ ├── Notifier.Query │ │ ├── Class1.cs │ │ └── Notifier.Query.csproj │ ├── Owner.Query │ │ ├── Class1.cs │ │ └── Owner.Query.csproj │ ├── Reminder.Query │ │ ├── Class1.cs │ │ └── Reminder.Query.csproj │ └── Tenant.Query │ │ ├── Class1.cs │ │ └── Tenant.Query.csproj ├── Repositories │ ├── Hostel.Repository │ │ ├── Hostel.Repository.csproj │ │ ├── Read │ │ │ └── Manager.cs │ │ └── Write │ │ │ ├── Floor.cs │ │ │ └── Manager.cs │ ├── Notifier.Repository │ │ ├── Class1.cs │ │ └── Notifier.Repository.csproj │ ├── Owner.Repository │ │ ├── Class1.cs │ │ └── Owner.Repository.csproj │ ├── Reminder.Repository │ │ ├── Class1.cs │ │ └── Reminder.Repository.csproj │ └── Tenant.Repository │ │ ├── Class1.cs │ │ └── Tenant.Repository.csproj └── States │ ├── Hostel.State │ ├── Floor │ │ ├── BathRoomManagerState.cs │ │ ├── FloorState.cs │ │ ├── RoomManagerState.cs │ │ ├── ToiletManagerState.cs │ │ └── Units │ │ │ ├── BathRoomState.cs │ │ │ ├── KitchenState.cs │ │ │ ├── RoomState.cs │ │ │ └── ToiletState.cs │ ├── Hostel.State.csproj │ ├── HostelManagerState.cs │ ├── Sensor │ │ ├── SensorManagerState.cs │ │ └── SensorState.cs │ ├── SepticTankState.cs │ └── WaterReservoirState.cs │ ├── Notifier.State │ ├── Class1.cs │ └── Notifier.State.csproj │ ├── Owner.State │ ├── Class1.cs │ └── Owner.State.csproj │ ├── Reminder.State │ ├── Class1.cs │ └── Reminder.State.csproj │ └── Tenant.State │ └── Tenant.State.csproj ├── Extensions └── Akka.Extension │ ├── Akka.Extension.csproj │ ├── ConfigurationLoader.cs │ ├── Extension.cs │ ├── ManagerActorProvider.cs │ ├── ServiceScopeExtension.cs │ └── ServiceScopeExtensionIdProvider.cs ├── Hostel.sln ├── HostelSchemaCompare.scmp ├── Hosts ├── Hostel.Host │ ├── CommandConsumer.cs │ ├── HostActorRef.cs │ ├── Hostel.Host.csproj │ ├── HostelService.cs │ ├── Observers │ │ └── ReceiveObserver.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.json │ └── host.hocon ├── IdentityServer.Host │ ├── Actors │ │ ├── IdentityManagerActor.cs │ │ └── ProcessorActor.cs │ ├── Commands │ │ ├── AddHostelClaim.cs │ │ └── CreateAccount.cs │ ├── Config.cs │ ├── Consumers │ │ └── CommandConsumer.cs │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── ConsentController.cs │ │ ├── DeviceController.cs │ │ ├── DiagnosticsController.cs │ │ ├── GrantsController.cs │ │ └── HomeController.cs │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ └── Migrations │ │ │ ├── IdentityServer │ │ │ ├── ConfigurationDb │ │ │ │ ├── 20181230131608_InitialIdentityServerConfigurationDbMigration.Designer.cs │ │ │ │ ├── 20181230131608_InitialIdentityServerConfigurationDbMigration.cs │ │ │ │ └── ConfigurationDbContextModelSnapshot.cs │ │ │ └── PersistedGrantDb │ │ │ │ ├── 20181230131558_InitialIdentityServerPersistedGrantDbMigration.Designer.cs │ │ │ │ ├── 20181230131558_InitialIdentityServerPersistedGrantDbMigration.cs │ │ │ │ └── PersistedGrantDbContextModelSnapshot.cs │ │ │ └── Users │ │ │ ├── 20181230165913_CreateIdentitySchema.Designer.cs │ │ │ ├── 20181230165913_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── EventSink.cs │ ├── IdentityActorStatic.cs │ ├── IdentityServer.Host.csproj │ ├── Models │ │ ├── Account │ │ │ ├── AccountOptions.cs │ │ │ ├── ExternalController.cs │ │ │ ├── ExternalProvider.cs │ │ │ ├── LoggedOutViewModel.cs │ │ │ ├── LoginInputModel.cs │ │ │ ├── LoginViewModel.cs │ │ │ ├── LogoutInputModel.cs │ │ │ ├── LogoutViewModel.cs │ │ │ └── RedirectViewModel.cs │ │ ├── Consent │ │ │ ├── ConsentInputModel.cs │ │ │ ├── ConsentOptions.cs │ │ │ ├── ConsentViewModel.cs │ │ │ ├── ProcessConsentResult.cs │ │ │ └── ScopeViewModel.cs │ │ ├── Device │ │ │ ├── DeviceAuthorizationInputModel.cs │ │ │ └── DeviceAuthorizationViewModel.cs │ │ ├── Diagnostics │ │ │ └── DiagnosticsViewModel.cs │ │ ├── Extensions.cs │ │ ├── Grants │ │ │ └── GrantsViewModel.cs │ │ ├── Home │ │ │ └── ErrorViewModel.cs │ │ └── SecurityHeadersAttribute.cs │ ├── Program.cs │ ├── SeedData.cs │ ├── Services │ │ ├── HostelUser.cs │ │ ├── IdentityService.cs │ │ └── ProfileService.cs │ ├── Startup.cs │ ├── Views │ │ ├── Account │ │ │ ├── LoggedOut.cshtml │ │ │ ├── Login.cshtml │ │ │ └── Logout.cshtml │ │ ├── Consent │ │ │ └── Index.cshtml │ │ ├── Device │ │ │ ├── Success.cshtml │ │ │ ├── UserCodeCapture.cshtml │ │ │ └── UserCodeConfirmation.cshtml │ │ ├── Diagnostics │ │ │ └── Index.cshtml │ │ ├── Grants │ │ │ └── Index.cshtml │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── Redirect.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _ScopeListItem.cshtml │ │ │ └── _ValidationSummary.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.json │ ├── host.hocon │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ ├── site.less │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── icon.jpg │ │ ├── icon.png │ │ ├── js │ │ ├── signin-redirect.js │ │ └── signout-redirect.js │ │ └── lib │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ └── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── Notifier.Host │ ├── Notifier.Host.csproj │ └── Program.cs ├── Owner.Host │ ├── Owner.Host.csproj │ └── Program.cs ├── Reminder.Host │ ├── Program.cs │ └── Reminder.Host.csproj ├── SignalR.Host │ ├── Consumers │ │ ├── HomeConsumer.cs │ │ └── PortalConsumer.cs │ ├── Hubs │ │ ├── HomeHub.cs │ │ └── PortalHub.cs │ ├── Program.cs │ ├── Properties │ │ └── PublishProfiles │ │ │ └── FolderProfile.pubxml │ ├── ServiceManager.cs │ ├── SignalR.Host.csproj │ ├── Startup.cs │ └── appsettings.json └── Tenant.Host │ ├── Program.cs │ └── Tenant.Host.csproj ├── IoT └── IoT.Simulations │ ├── IoT.Simulations.csproj │ └── Program.cs ├── Links.txt ├── LogShared ├── Dto.cs └── LogShared.csproj ├── Logger ├── Akka.MassTransit.Logger.Console │ ├── Akka.MassTransit.Logger.Console.csproj │ └── Program.cs └── AkkaDotNet.MassTransit.Logger │ ├── Akka.MassTransit.Logger.csproj │ ├── QueueLogger.cs │ └── TraceLogger.cs ├── Presentation └── Web │ ├── Landing │ ├── Hostel.Web.Landing.Angular │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── 2.7.0 │ │ ├── Hostel.Web.Landing.Angular.csproj │ │ ├── NPM setup.bat │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── README.md │ │ ├── angular.json │ │ ├── e2e │ │ │ ├── app.e2e-spec.ts │ │ │ ├── app.po.ts │ │ │ └── tsconfig.e2e.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── components │ │ │ │ │ └── home │ │ │ │ │ │ ├── account.component.html │ │ │ │ │ │ ├── account.component.ts │ │ │ │ │ │ ├── home.component.css │ │ │ │ │ │ ├── home.component.html │ │ │ │ │ │ ├── home.component.ts │ │ │ │ │ │ ├── register.component.css │ │ │ │ │ │ ├── register.component.html │ │ │ │ │ │ └── register.component.ts │ │ │ │ ├── models │ │ │ │ │ ├── Account.Model.ts │ │ │ │ │ ├── Event.ts │ │ │ │ │ ├── Person.Model.ts │ │ │ │ │ └── transporter.model.ts │ │ │ │ ├── providers │ │ │ │ │ ├── errorhandler.ts │ │ │ │ │ └── httpinterceptor.ts │ │ │ │ ├── services │ │ │ │ │ ├── home.service.ts │ │ │ │ │ └── signalr.service.ts │ │ │ │ └── shared │ │ │ │ │ └── app.constants.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ ├── styles.less │ │ │ ├── styles.min.css │ │ │ ├── test.ts │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.spec.json │ │ │ └── typings.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ └── Hostel.Web.Landing.MVC │ │ ├── Controllers │ │ ├── Api.cs │ │ └── HomeController.cs │ │ ├── Hostel.Web.Landing.MVC.csproj │ │ ├── Models │ │ └── ErrorViewModel.cs │ │ ├── PortalService.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServiceManager.cs │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── dist │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── index.html │ │ ├── main.js │ │ ├── main.js.map │ │ ├── polyfills.js │ │ ├── polyfills.js.map │ │ ├── runtime.js │ │ ├── runtime.js.map │ │ ├── styles.js │ │ ├── styles.js.map │ │ ├── vendor.js │ │ └── vendor.js.map │ │ ├── favicon.ico │ │ ├── images │ │ ├── HOSTEL 22.jpg │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ └── Portal │ ├── Hostel.Web.Portal.Angular │ ├── .editorconfig │ ├── .gitignore │ ├── 2.7.0 │ ├── Hostel.Web.Portal.Angular.csproj │ ├── NPM setup.bat │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── app.e2e-spec.ts │ │ ├── app.po.ts │ │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── _models │ │ │ │ ├── AuthObject.ts │ │ │ │ └── Role.ts │ │ │ ├── _services │ │ │ │ ├── authorization.service.ts │ │ │ │ ├── home.service.ts │ │ │ │ ├── owner.service.ts │ │ │ │ ├── signalr.service.ts │ │ │ │ └── tenant.service.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── image │ │ │ │ └── HOSTEL 22.jpg │ │ │ ├── models │ │ │ │ ├── Account.Model.ts │ │ │ │ ├── Person.Model.ts │ │ │ │ └── transporter.model.ts │ │ │ ├── services │ │ │ │ ├── home.service.ts │ │ │ │ └── signalr.service.ts │ │ │ └── shared │ │ │ │ └── app.constants.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── styles.less │ │ ├── styles.min.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json │ └── Hostel.Web.Portal.MVC │ ├── AutoRefresh │ ├── AutoRefreshBuilderExtensions.cs │ ├── AutoRefreshConfigureCookieOptions.cs │ ├── AutoRefreshCookieEvents.cs │ └── AutoRefreshOptions.cs │ ├── Controllers │ ├── ApiOwner.cs │ ├── ApiTenant.cs │ └── HomeController.cs │ ├── Hostel.Web.Portal.MVC.csproj │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ └── banner3.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── README.md ├── Shared ├── Actors │ └── HostelActor.cs ├── Dto.cs ├── HandlerResult.cs ├── ICommand.cs ├── ICommandHandler.cs ├── IEvent.cs ├── IMassTransitCommand.cs ├── IMassTransitEvent.cs ├── IMessage.cs ├── IQuery.cs ├── IState.cs ├── ISystemCommand.cs ├── ISystemEvent.cs ├── Message.cs ├── ObserverSubscriber.cs ├── Repository │ ├── IDataTypes.cs │ ├── IDbProperties.cs │ ├── IRepository.cs │ └── Impl │ │ ├── DataTypes.cs │ │ ├── DbProperties.cs │ │ └── Repository.cs ├── Shared.csproj └── SourceObservable.cs ├── SharpNetSH ├── Actions │ ├── HTTP │ │ ├── Enums │ │ │ └── Timeout.cs │ │ ├── HttpAction.cs │ │ ├── IAddAction.cs │ │ ├── IDeleteAction.cs │ │ ├── IFlushAction.cs │ │ ├── IHttpAction.cs │ │ └── IShowAction.cs │ ├── INetSH.cs │ ├── NetSh.cs │ └── WLAN │ │ ├── Enums │ │ ├── AuthMode.cs │ │ ├── Authentication.cs │ │ ├── ConnectionMode.cs │ │ ├── ConnectionType.cs │ │ ├── Cost.cs │ │ ├── Display.cs │ │ ├── Encryption.cs │ │ ├── KeyType.cs │ │ ├── KeyUsage.cs │ │ ├── Mode.cs │ │ ├── NetworkMode.cs │ │ ├── NetworkType.cs │ │ ├── Permission.cs │ │ ├── ProfileType.cs │ │ ├── SsoMode.cs │ │ ├── TracingMode.cs │ │ └── User.cs │ │ ├── IAddAction.cs │ │ ├── IDeleteAction.cs │ │ ├── ISetAction.cs │ │ ├── IShowAction.cs │ │ ├── IWlanAction.cs │ │ └── WlanAction.cs ├── Attributes │ ├── BooleanValueAttribute.cs │ ├── MethodNameAttribute.cs │ ├── ParameterNameAttribute.cs │ └── ResponseProcessorAttribute.cs ├── Harnesses │ ├── CommandLineHarness.cs │ └── ConsoleLogHarness.cs ├── Interfaces │ ├── IAction.cs │ ├── IActionNameProvider.cs │ ├── IExecutionHarness.cs │ ├── IInitializable.cs │ ├── IOutputObject.cs │ ├── IResponse.cs │ └── IResponseProcessor.cs ├── Properties │ └── AssemblyInfo.cs ├── ResponseProcessors │ ├── BlockProcessor.cs │ ├── ExitCodeProcessor.cs │ ├── SkipHeaderProcessor.cs │ ├── StandardResponse.cs │ ├── TabulatedObjectProcessor.cs │ └── TrimProcessor.cs ├── SharpNetSH.csproj └── Utilities │ ├── ActionProxy.cs │ ├── BooleanType.cs │ ├── ExtensionMethods.cs │ └── Tree.cs ├── docker-compose.dcproj ├── docker-compose.override.yml ├── docker-compose.yml └── hostel.home.gif /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/.gitignore -------------------------------------------------------------------------------- /Certificates/White_Purple_Certificate_Authority.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Certificates/White_Purple_Certificate_Authority.crt -------------------------------------------------------------------------------- /Database/Hostel.Query/Hostel.Query.refactorlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel.Query/Hostel.Query.refactorlog -------------------------------------------------------------------------------- /Database/Hostel.Query/Hostel.Query.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel.Query/Hostel.Query.sqlproj -------------------------------------------------------------------------------- /Database/Hostel.Query/dbo/Tables/Hostel_Tenants.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel.Query/dbo/Tables/Hostel_Tenants.sql -------------------------------------------------------------------------------- /Database/Hostel/Hostel.refactorlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/Hostel.refactorlog -------------------------------------------------------------------------------- /Database/Hostel/Hostel.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/Hostel.sqlproj -------------------------------------------------------------------------------- /Database/Hostel/Script.RoleType.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/Script.RoleType.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/ConstructHostel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/ConstructHostel.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/CreateBathRoom.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/CreateBathRoom.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/CreateFloor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/CreateFloor.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/CreateKitchen.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/CreateKitchen.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/CreatePerson.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/CreatePerson.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/CreatePerson_Birthday.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/CreatePerson_Birthday.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/CreateReseervoir.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/CreateReseervoir.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/CreateRoom.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/CreateRoom.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/CreateSepticTank.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/CreateSepticTank.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/CreateToilet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/CreateToilet.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/InstallBathRoomSensor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/InstallBathRoomSensor.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/InstallKitchenSensor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/InstallKitchenSensor.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/InstallReservoirSensor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/InstallReservoirSensor.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/InstallRoomSensor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/InstallRoomSensor.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/InstallSepticSensor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/InstallSepticSensor.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Stored Procedures/InstallToiletSensor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Stored Procedures/InstallToiletSensor.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Bath_Room.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Bath_Room.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Bath_Room_Sensors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Bath_Room_Sensors.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Bath_Room_Sensors_Reading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Bath_Room_Sensors_Reading.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Kitchen.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Kitchen.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Kitchen_Sensors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Kitchen_Sensors.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Kitchen_Sensors_Reading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Kitchen_Sensors_Reading.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Rooms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Rooms.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Rooms_Sensors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Rooms_Sensors.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Rooms_Tenancy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Rooms_Tenancy.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Rooms_Tenants.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Rooms_Tenants.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Toilets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Toilets.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Toilets_Sensors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Toilets_Sensors.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Floor_Toilets_Sensors_Reading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Floor_Toilets_Sensors_Reading.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Persons.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Persons_Birthday.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Persons_Birthday.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Roles.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Sensor_Reading_Types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Sensor_Reading_Types.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Sensors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Sensors.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Septic_Tank.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Septic_Tank.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Septic_Tank_Sensors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Septic_Tank_Sensors.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Septic_Tank_Sensors_Reading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Septic_Tank_Sensors_Reading.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Water_Reservoir.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Water_Reservoir.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Water_Reservoir_Sensors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Water_Reservoir_Sensors.sql -------------------------------------------------------------------------------- /Database/Hostel/dbo/Tables/Hostel_Water_Reservoir_Sensors_Reading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Database/Hostel/dbo/Tables/Hostel_Water_Reservoir_Sensors_Reading.sql -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/ConstructHostel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/ConstructHostel.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Create/CreateBathRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Create/CreateBathRoom.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Create/CreateFloor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Create/CreateFloor.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Create/CreateKitchen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Create/CreateKitchen.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Create/CreatePerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Create/CreatePerson.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Create/CreateRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Create/CreateRoom.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Create/CreateSepticTank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Create/CreateSepticTank.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Create/CreateToilet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Create/CreateToilet.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Create/CreateWaterReservoir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Create/CreateWaterReservoir.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/EvictTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/EvictTenant.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Hostel.Command.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Hostel.Command.csproj -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/InstallSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/InstallSensor.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Internal/LayoutBathRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Internal/LayoutBathRoom.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Internal/LayoutFloor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Internal/LayoutFloor.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Internal/LayoutKitchen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Internal/LayoutKitchen.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Internal/LayoutRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Internal/LayoutRoom.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/Internal/LayoutToilet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/Internal/LayoutToilet.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/RentOutRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/RentOutRoom.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/SepticTank/NotifySepticTank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/SepticTank/NotifySepticTank.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/SepticTank/ReadSepticTank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/SepticTank/ReadSepticTank.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/StateChange/Floor/StoreFloorStateChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/StateChange/Floor/StoreFloorStateChange.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/StateChange/Floor/Units/StoreBathRoomStateChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/StateChange/Floor/Units/StoreBathRoomStateChange.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/StateChange/Floor/Units/StoreKitchenStateChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/StateChange/Floor/Units/StoreKitchenStateChange.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/StateChange/Floor/Units/StoreRoomStateChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/StateChange/Floor/Units/StoreRoomStateChange.cs -------------------------------------------------------------------------------- /Domain/Commands/Hostel.Command/StateChange/Floor/Units/StoreToiletStateChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Hostel.Command/StateChange/Floor/Units/StoreToiletStateChange.cs -------------------------------------------------------------------------------- /Domain/Commands/MassTransit.Command/MassTransit.Command.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/MassTransit.Command/MassTransit.Command.csproj -------------------------------------------------------------------------------- /Domain/Commands/MassTransit.Command/MassTransitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/MassTransit.Command/MassTransitCommand.cs -------------------------------------------------------------------------------- /Domain/Commands/Notifier.Command/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Notifier.Command/Class1.cs -------------------------------------------------------------------------------- /Domain/Commands/Notifier.Command/Notifier.Command.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Notifier.Command/Notifier.Command.csproj -------------------------------------------------------------------------------- /Domain/Commands/Owner.Command/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Owner.Command/Class1.cs -------------------------------------------------------------------------------- /Domain/Commands/Owner.Command/Owner.Command.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Owner.Command/Owner.Command.csproj -------------------------------------------------------------------------------- /Domain/Commands/Reminder.Command/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Reminder.Command/Class1.cs -------------------------------------------------------------------------------- /Domain/Commands/Reminder.Command/Reminder.Command.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Reminder.Command/Reminder.Command.csproj -------------------------------------------------------------------------------- /Domain/Commands/Tenant.Command/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Tenant.Command/Class1.cs -------------------------------------------------------------------------------- /Domain/Commands/Tenant.Command/Tenant.Command.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Commands/Tenant.Command/Tenant.Command.csproj -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Floor/BathRoomManagerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Floor/BathRoomManagerActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Floor/FloorActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Floor/FloorActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Floor/RoomManagerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Floor/RoomManagerActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Floor/ToiletManagerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Floor/ToiletManagerActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Floor/Units/BathRoomActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Floor/Units/BathRoomActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Floor/Units/KitchenActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Floor/Units/KitchenActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Floor/Units/RoomActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Floor/Units/RoomActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Floor/Units/ToiletActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Floor/Units/ToiletActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/Floor/BathRoomManagerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/Floor/BathRoomManagerHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/Floor/RoomManagerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/Floor/RoomManagerHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/Floor/ToiletManagerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/Floor/ToiletManagerHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/Floor/Units/BathRoomHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/Floor/Units/BathRoomHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/Floor/Units/KitchenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/Floor/Units/KitchenHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/Floor/Units/RoomHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/Floor/Units/RoomHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/Floor/Units/ToiletHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/Floor/Units/ToiletHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/FloorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/FloorHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/HostelManagerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/HostelManagerHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/Sensor/SensorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/Sensor/SensorHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/Sensor/SensorManagerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/Sensor/SensorManagerHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/SepticTankHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/SepticTankHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Handler/WaterReservoirHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Handler/WaterReservoirHandler.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Hostel.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Hostel.Entity.csproj -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/HostelManagerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/HostelManagerActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Sensor/SensorActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Sensor/SensorActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/Sensor/SensorManagerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/Sensor/SensorManagerActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/SepticTankActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/SepticTankActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Hostel.Entity/WaterReservoirActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Hostel.Entity/WaterReservoirActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Notifier.Entity/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Notifier.Entity/Class1.cs -------------------------------------------------------------------------------- /Domain/Entities/Notifier.Entity/Notifier.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Notifier.Entity/Notifier.Entity.csproj -------------------------------------------------------------------------------- /Domain/Entities/Owner.Entity/Owner.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Owner.Entity/Owner.Entity.csproj -------------------------------------------------------------------------------- /Domain/Entities/Owner.Entity/OwnerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Owner.Entity/OwnerActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Owner.Entity/OwnerManagerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Owner.Entity/OwnerManagerActor.cs -------------------------------------------------------------------------------- /Domain/Entities/Reminder.Entity/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Reminder.Entity/Class1.cs -------------------------------------------------------------------------------- /Domain/Entities/Reminder.Entity/Reminder.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Reminder.Entity/Reminder.Entity.csproj -------------------------------------------------------------------------------- /Domain/Entities/Tenant.Entity/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Tenant.Entity/Class1.cs -------------------------------------------------------------------------------- /Domain/Entities/Tenant.Entity/Tenant.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Entities/Tenant.Entity/Tenant.Entity.csproj -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/ConstructedHostel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/ConstructedHostel.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/Created/CreatedBathRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/Created/CreatedBathRoom.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/Created/CreatedFloor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/Created/CreatedFloor.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/Created/CreatedKitchen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/Created/CreatedKitchen.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/Created/CreatedRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/Created/CreatedRoom.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/Created/CreatedSepticTank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/Created/CreatedSepticTank.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/Created/CreatedToilet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/Created/CreatedToilet.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/Created/CreatedWaterReservoir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/Created/CreatedWaterReservoir.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/Created/PersonCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/Created/PersonCreated.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/EvictedTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/EvictedTenant.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/Floor/RentedOutRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/Floor/RentedOutRoom.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/Hostel.Event.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/Hostel.Event.csproj -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/InstalledSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/InstalledSensor.cs -------------------------------------------------------------------------------- /Domain/Events/Hostel.Event/SepticTank/SepticTankFillingUpEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Hostel.Event/SepticTank/SepticTankFillingUpEvent.cs -------------------------------------------------------------------------------- /Domain/Events/MassTransit.Event/MassTransit.Event.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/MassTransit.Event/MassTransit.Event.csproj -------------------------------------------------------------------------------- /Domain/Events/MassTransit.Event/MassTransitEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/MassTransit.Event/MassTransitEvent.cs -------------------------------------------------------------------------------- /Domain/Events/Notifier.Event/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Notifier.Event/Class1.cs -------------------------------------------------------------------------------- /Domain/Events/Notifier.Event/Notifier.Event.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Notifier.Event/Notifier.Event.csproj -------------------------------------------------------------------------------- /Domain/Events/Owner.Event/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Owner.Event/Class1.cs -------------------------------------------------------------------------------- /Domain/Events/Owner.Event/Owner.Event.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Owner.Event/Owner.Event.csproj -------------------------------------------------------------------------------- /Domain/Events/Reminder.Event/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Reminder.Event/Class1.cs -------------------------------------------------------------------------------- /Domain/Events/Reminder.Event/Reminder.Event.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Reminder.Event/Reminder.Event.csproj -------------------------------------------------------------------------------- /Domain/Events/Sensor.Event/Sensor.Event.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Sensor.Event/Sensor.Event.csproj -------------------------------------------------------------------------------- /Domain/Events/Sensor.Event/SensorInstalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Sensor.Event/SensorInstalled.cs -------------------------------------------------------------------------------- /Domain/Events/Tenant.Event/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Tenant.Event/Class1.cs -------------------------------------------------------------------------------- /Domain/Events/Tenant.Event/Tenant.Event.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Events/Tenant.Event/Tenant.Event.csproj -------------------------------------------------------------------------------- /Domain/Models/Hostel.Model/Construction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Hostel.Model/Construction.cs -------------------------------------------------------------------------------- /Domain/Models/Hostel.Model/Floor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Hostel.Model/Floor.cs -------------------------------------------------------------------------------- /Domain/Models/Hostel.Model/Hostel.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Hostel.Model/Hostel.Model.csproj -------------------------------------------------------------------------------- /Domain/Models/Hostel.Model/RentOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Hostel.Model/RentOut.cs -------------------------------------------------------------------------------- /Domain/Models/Hostel.Model/Sensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Hostel.Model/Sensor.cs -------------------------------------------------------------------------------- /Domain/Models/Hostel.Model/SepticTank/NotifySepticTank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Hostel.Model/SepticTank/NotifySepticTank.cs -------------------------------------------------------------------------------- /Domain/Models/Hostel.Model/SepticTank/SepticTankReading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Hostel.Model/SepticTank/SepticTankReading.cs -------------------------------------------------------------------------------- /Domain/Models/Hostel.Model/Tenant/Birthday.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Hostel.Model/Tenant/Birthday.cs -------------------------------------------------------------------------------- /Domain/Models/Hostel.Model/Tenant/Issue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Hostel.Model/Tenant/Issue.cs -------------------------------------------------------------------------------- /Domain/Models/Hostel.Model/Tenant/Tenancy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Hostel.Model/Tenant/Tenancy.cs -------------------------------------------------------------------------------- /Domain/Models/Hostel.Model/Tenant/Tenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Hostel.Model/Tenant/Tenant.cs -------------------------------------------------------------------------------- /Domain/Models/Notifier.Model/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Notifier.Model/Class1.cs -------------------------------------------------------------------------------- /Domain/Models/Notifier.Model/Notifier.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Notifier.Model/Notifier.Model.csproj -------------------------------------------------------------------------------- /Domain/Models/Owner.Model/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Owner.Model/Class1.cs -------------------------------------------------------------------------------- /Domain/Models/Owner.Model/Owner.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Owner.Model/Owner.Model.csproj -------------------------------------------------------------------------------- /Domain/Models/Reminder.Model/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Reminder.Model/Class1.cs -------------------------------------------------------------------------------- /Domain/Models/Reminder.Model/Reminder.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Reminder.Model/Reminder.Model.csproj -------------------------------------------------------------------------------- /Domain/Models/Tenant.Model/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Tenant.Model/Class1.cs -------------------------------------------------------------------------------- /Domain/Models/Tenant.Model/Tenant.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Models/Tenant.Model/Tenant.Model.csproj -------------------------------------------------------------------------------- /Domain/Queries/Hostel.Query/Hostel.Query.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Queries/Hostel.Query/Hostel.Query.csproj -------------------------------------------------------------------------------- /Domain/Queries/Hostel.Query/ManagerQueryActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Queries/Hostel.Query/ManagerQueryActor.cs -------------------------------------------------------------------------------- /Domain/Queries/Notifier.Query/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Queries/Notifier.Query/Class1.cs -------------------------------------------------------------------------------- /Domain/Queries/Notifier.Query/Notifier.Query.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Queries/Notifier.Query/Notifier.Query.csproj -------------------------------------------------------------------------------- /Domain/Queries/Owner.Query/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Queries/Owner.Query/Class1.cs -------------------------------------------------------------------------------- /Domain/Queries/Owner.Query/Owner.Query.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Queries/Owner.Query/Owner.Query.csproj -------------------------------------------------------------------------------- /Domain/Queries/Reminder.Query/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Queries/Reminder.Query/Class1.cs -------------------------------------------------------------------------------- /Domain/Queries/Reminder.Query/Reminder.Query.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Queries/Reminder.Query/Reminder.Query.csproj -------------------------------------------------------------------------------- /Domain/Queries/Tenant.Query/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Queries/Tenant.Query/Class1.cs -------------------------------------------------------------------------------- /Domain/Queries/Tenant.Query/Tenant.Query.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Queries/Tenant.Query/Tenant.Query.csproj -------------------------------------------------------------------------------- /Domain/Repositories/Hostel.Repository/Hostel.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Hostel.Repository/Hostel.Repository.csproj -------------------------------------------------------------------------------- /Domain/Repositories/Hostel.Repository/Read/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Hostel.Repository/Read/Manager.cs -------------------------------------------------------------------------------- /Domain/Repositories/Hostel.Repository/Write/Floor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Hostel.Repository/Write/Floor.cs -------------------------------------------------------------------------------- /Domain/Repositories/Hostel.Repository/Write/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Hostel.Repository/Write/Manager.cs -------------------------------------------------------------------------------- /Domain/Repositories/Notifier.Repository/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Notifier.Repository/Class1.cs -------------------------------------------------------------------------------- /Domain/Repositories/Notifier.Repository/Notifier.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Notifier.Repository/Notifier.Repository.csproj -------------------------------------------------------------------------------- /Domain/Repositories/Owner.Repository/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Owner.Repository/Class1.cs -------------------------------------------------------------------------------- /Domain/Repositories/Owner.Repository/Owner.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Owner.Repository/Owner.Repository.csproj -------------------------------------------------------------------------------- /Domain/Repositories/Reminder.Repository/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Reminder.Repository/Class1.cs -------------------------------------------------------------------------------- /Domain/Repositories/Reminder.Repository/Reminder.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Reminder.Repository/Reminder.Repository.csproj -------------------------------------------------------------------------------- /Domain/Repositories/Tenant.Repository/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Tenant.Repository/Class1.cs -------------------------------------------------------------------------------- /Domain/Repositories/Tenant.Repository/Tenant.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/Repositories/Tenant.Repository/Tenant.Repository.csproj -------------------------------------------------------------------------------- /Domain/States/Hostel.State/Floor/BathRoomManagerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/Floor/BathRoomManagerState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/Floor/FloorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/Floor/FloorState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/Floor/RoomManagerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/Floor/RoomManagerState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/Floor/ToiletManagerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/Floor/ToiletManagerState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/Floor/Units/BathRoomState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/Floor/Units/BathRoomState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/Floor/Units/KitchenState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/Floor/Units/KitchenState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/Floor/Units/RoomState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/Floor/Units/RoomState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/Floor/Units/ToiletState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/Floor/Units/ToiletState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/Hostel.State.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/Hostel.State.csproj -------------------------------------------------------------------------------- /Domain/States/Hostel.State/HostelManagerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/HostelManagerState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/Sensor/SensorManagerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/Sensor/SensorManagerState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/Sensor/SensorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/Sensor/SensorState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/SepticTankState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/SepticTankState.cs -------------------------------------------------------------------------------- /Domain/States/Hostel.State/WaterReservoirState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Hostel.State/WaterReservoirState.cs -------------------------------------------------------------------------------- /Domain/States/Notifier.State/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Notifier.State/Class1.cs -------------------------------------------------------------------------------- /Domain/States/Notifier.State/Notifier.State.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Notifier.State/Notifier.State.csproj -------------------------------------------------------------------------------- /Domain/States/Owner.State/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Owner.State/Class1.cs -------------------------------------------------------------------------------- /Domain/States/Owner.State/Owner.State.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Owner.State/Owner.State.csproj -------------------------------------------------------------------------------- /Domain/States/Reminder.State/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Reminder.State/Class1.cs -------------------------------------------------------------------------------- /Domain/States/Reminder.State/Reminder.State.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Reminder.State/Reminder.State.csproj -------------------------------------------------------------------------------- /Domain/States/Tenant.State/Tenant.State.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Domain/States/Tenant.State/Tenant.State.csproj -------------------------------------------------------------------------------- /Extensions/Akka.Extension/Akka.Extension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Extensions/Akka.Extension/Akka.Extension.csproj -------------------------------------------------------------------------------- /Extensions/Akka.Extension/ConfigurationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Extensions/Akka.Extension/ConfigurationLoader.cs -------------------------------------------------------------------------------- /Extensions/Akka.Extension/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Extensions/Akka.Extension/Extension.cs -------------------------------------------------------------------------------- /Extensions/Akka.Extension/ManagerActorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Extensions/Akka.Extension/ManagerActorProvider.cs -------------------------------------------------------------------------------- /Extensions/Akka.Extension/ServiceScopeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Extensions/Akka.Extension/ServiceScopeExtension.cs -------------------------------------------------------------------------------- /Extensions/Akka.Extension/ServiceScopeExtensionIdProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Extensions/Akka.Extension/ServiceScopeExtensionIdProvider.cs -------------------------------------------------------------------------------- /Hostel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hostel.sln -------------------------------------------------------------------------------- /HostelSchemaCompare.scmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/HostelSchemaCompare.scmp -------------------------------------------------------------------------------- /Hosts/Hostel.Host/CommandConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Hostel.Host/CommandConsumer.cs -------------------------------------------------------------------------------- /Hosts/Hostel.Host/HostActorRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Hostel.Host/HostActorRef.cs -------------------------------------------------------------------------------- /Hosts/Hostel.Host/Hostel.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Hostel.Host/Hostel.Host.csproj -------------------------------------------------------------------------------- /Hosts/Hostel.Host/HostelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Hostel.Host/HostelService.cs -------------------------------------------------------------------------------- /Hosts/Hostel.Host/Observers/ReceiveObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Hostel.Host/Observers/ReceiveObserver.cs -------------------------------------------------------------------------------- /Hosts/Hostel.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Hostel.Host/Program.cs -------------------------------------------------------------------------------- /Hosts/Hostel.Host/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Hostel.Host/Startup.cs -------------------------------------------------------------------------------- /Hosts/Hostel.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Hostel.Host/appsettings.json -------------------------------------------------------------------------------- /Hosts/Hostel.Host/host.hocon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Hostel.Host/host.hocon -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Actors/IdentityManagerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Actors/IdentityManagerActor.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Actors/ProcessorActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Actors/ProcessorActor.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Commands/AddHostelClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Commands/AddHostelClaim.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Commands/CreateAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Commands/CreateAccount.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Config.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Consumers/CommandConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Consumers/CommandConsumer.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Controllers/AccountController.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Controllers/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Controllers/ConsentController.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Controllers/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Controllers/DeviceController.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Controllers/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Controllers/DiagnosticsController.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Controllers/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Controllers/GrantsController.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/ConfigurationDb/20181230131608_InitialIdentityServerConfigurationDbMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/ConfigurationDb/20181230131608_InitialIdentityServerConfigurationDbMigration.Designer.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/ConfigurationDb/20181230131608_InitialIdentityServerConfigurationDbMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/ConfigurationDb/20181230131608_InitialIdentityServerConfigurationDbMigration.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/ConfigurationDb/ConfigurationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/ConfigurationDb/ConfigurationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/PersistedGrantDb/20181230131558_InitialIdentityServerPersistedGrantDbMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/PersistedGrantDb/20181230131558_InitialIdentityServerPersistedGrantDbMigration.Designer.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/PersistedGrantDb/20181230131558_InitialIdentityServerPersistedGrantDbMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/PersistedGrantDb/20181230131558_InitialIdentityServerPersistedGrantDbMigration.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/PersistedGrantDb/PersistedGrantDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Data/Migrations/IdentityServer/PersistedGrantDb/PersistedGrantDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Data/Migrations/Users/20181230165913_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Data/Migrations/Users/20181230165913_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Data/Migrations/Users/20181230165913_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Data/Migrations/Users/20181230165913_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Data/Migrations/Users/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Data/Migrations/Users/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/EventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/EventSink.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/IdentityActorStatic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/IdentityActorStatic.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/IdentityServer.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/IdentityServer.Host.csproj -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Account/AccountOptions.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Account/ExternalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Account/ExternalController.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Account/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Account/ExternalProvider.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Account/RedirectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Account/RedirectViewModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Consent/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Consent/ProcessConsentResult.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Device/DeviceAuthorizationInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Device/DeviceAuthorizationInputModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Device/DeviceAuthorizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Device/DeviceAuthorizationViewModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Diagnostics/DiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Diagnostics/DiagnosticsViewModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Extensions.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/Home/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/Home/ErrorViewModel.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Models/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Models/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Program.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/SeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/SeedData.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Services/HostelUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Services/HostelUser.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Services/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Services/IdentityService.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Services/ProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Services/ProfileService.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Startup.cs -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Device/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Device/Success.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Device/UserCodeCapture.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Device/UserCodeCapture.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Device/UserCodeConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Device/UserCodeConfirmation.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Shared/Redirect.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Shared/Redirect.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Shared/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Shared/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/appsettings.json -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/host.hocon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/host.hocon -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/css/site.css -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/css/site.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/css/site.less -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/icon.jpg -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/icon.png -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/js/signin-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/js/signin-redirect.js -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /Hosts/IdentityServer.Host/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/IdentityServer.Host/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /Hosts/Notifier.Host/Notifier.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Notifier.Host/Notifier.Host.csproj -------------------------------------------------------------------------------- /Hosts/Notifier.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Notifier.Host/Program.cs -------------------------------------------------------------------------------- /Hosts/Owner.Host/Owner.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Owner.Host/Owner.Host.csproj -------------------------------------------------------------------------------- /Hosts/Owner.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Owner.Host/Program.cs -------------------------------------------------------------------------------- /Hosts/Reminder.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Reminder.Host/Program.cs -------------------------------------------------------------------------------- /Hosts/Reminder.Host/Reminder.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Reminder.Host/Reminder.Host.csproj -------------------------------------------------------------------------------- /Hosts/SignalR.Host/Consumers/HomeConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/SignalR.Host/Consumers/HomeConsumer.cs -------------------------------------------------------------------------------- /Hosts/SignalR.Host/Consumers/PortalConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/SignalR.Host/Consumers/PortalConsumer.cs -------------------------------------------------------------------------------- /Hosts/SignalR.Host/Hubs/HomeHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/SignalR.Host/Hubs/HomeHub.cs -------------------------------------------------------------------------------- /Hosts/SignalR.Host/Hubs/PortalHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/SignalR.Host/Hubs/PortalHub.cs -------------------------------------------------------------------------------- /Hosts/SignalR.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/SignalR.Host/Program.cs -------------------------------------------------------------------------------- /Hosts/SignalR.Host/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/SignalR.Host/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /Hosts/SignalR.Host/ServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/SignalR.Host/ServiceManager.cs -------------------------------------------------------------------------------- /Hosts/SignalR.Host/SignalR.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/SignalR.Host/SignalR.Host.csproj -------------------------------------------------------------------------------- /Hosts/SignalR.Host/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/SignalR.Host/Startup.cs -------------------------------------------------------------------------------- /Hosts/SignalR.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/SignalR.Host/appsettings.json -------------------------------------------------------------------------------- /Hosts/Tenant.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Tenant.Host/Program.cs -------------------------------------------------------------------------------- /Hosts/Tenant.Host/Tenant.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Hosts/Tenant.Host/Tenant.Host.csproj -------------------------------------------------------------------------------- /IoT/IoT.Simulations/IoT.Simulations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/IoT/IoT.Simulations/IoT.Simulations.csproj -------------------------------------------------------------------------------- /IoT/IoT.Simulations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/IoT/IoT.Simulations/Program.cs -------------------------------------------------------------------------------- /Links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Links.txt -------------------------------------------------------------------------------- /LogShared/Dto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/LogShared/Dto.cs -------------------------------------------------------------------------------- /LogShared/LogShared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/LogShared/LogShared.csproj -------------------------------------------------------------------------------- /Logger/Akka.MassTransit.Logger.Console/Akka.MassTransit.Logger.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Logger/Akka.MassTransit.Logger.Console/Akka.MassTransit.Logger.Console.csproj -------------------------------------------------------------------------------- /Logger/Akka.MassTransit.Logger.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Logger/Akka.MassTransit.Logger.Console/Program.cs -------------------------------------------------------------------------------- /Logger/AkkaDotNet.MassTransit.Logger/Akka.MassTransit.Logger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Logger/AkkaDotNet.MassTransit.Logger/Akka.MassTransit.Logger.csproj -------------------------------------------------------------------------------- /Logger/AkkaDotNet.MassTransit.Logger/QueueLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Logger/AkkaDotNet.MassTransit.Logger/QueueLogger.cs -------------------------------------------------------------------------------- /Logger/AkkaDotNet.MassTransit.Logger/TraceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Logger/AkkaDotNet.MassTransit.Logger/TraceLogger.cs -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/.editorconfig -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/.gitignore -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/2.7.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/Hostel.Web.Landing.Angular.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/Hostel.Web.Landing.Angular.csproj -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/NPM setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/NPM setup.bat -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/Properties/launchSettings.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/README.md -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/angular.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/e2e/app.po.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/karma.conf.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/package-lock.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/package.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/protractor.conf.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/app.component.html -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/app.component.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/app.module.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/account.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/account.component.html -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/account.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/account.component.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/home.component.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/home.component.html -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/home.component.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/register.component.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/register.component.html -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/components/home/register.component.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/models/Account.Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/models/Account.Model.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/models/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/models/Event.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/models/Person.Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/models/Person.Model.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/models/transporter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/models/transporter.model.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/providers/errorhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/providers/errorhandler.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/providers/httpinterceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/providers/httpinterceptor.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/services/home.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/services/home.service.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/services/signalr.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/services/signalr.service.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/shared/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/app/shared/app.constants.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/environments/environment.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/index.html -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/main.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/polyfills.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/styles.css -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/styles.less -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/styles.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/test.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/tsconfig.app.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/src/typings.d.ts -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/tsconfig.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.Angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.Angular/tslint.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Controllers/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Controllers/Api.cs -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Hostel.Web.Landing.MVC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Hostel.Web.Landing.MVC.csproj -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/PortalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/PortalService.cs -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Program.cs -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Properties/launchSettings.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/ServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/ServiceManager.cs -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Startup.cs -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/appsettings.Development.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/appsettings.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/css/site.css -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/index.html -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/main.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/main.js.map -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/polyfills.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/polyfills.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/polyfills.js.map -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/runtime.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/runtime.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/runtime.js.map -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/styles.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/styles.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/styles.js.map -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/vendor.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/vendor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/dist/vendor.js.map -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/images/HOSTEL 22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/images/HOSTEL 22.jpg -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/js/site.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Landing/Hostel.Web.Landing.MVC/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/.editorconfig -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/.gitignore -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/2.7.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/Hostel.Web.Portal.Angular.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/Hostel.Web.Portal.Angular.csproj -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/NPM setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/NPM setup.bat -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/Properties/launchSettings.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/README.md -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/angular.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/e2e/app.po.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/karma.conf.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/package-lock.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/package.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/protractor.conf.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_models/AuthObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_models/AuthObject.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_models/Role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_models/Role.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_services/authorization.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_services/authorization.service.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_services/home.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_services/home.service.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_services/owner.service.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_services/signalr.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_services/signalr.service.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/_services/tenant.service.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/app.component.css -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/app.component.html -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/app.component.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/app.module.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/home/home.component.html -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/home/home.component.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/image/HOSTEL 22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/image/HOSTEL 22.jpg -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/models/Account.Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/models/Account.Model.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/models/Person.Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/models/Person.Model.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/models/transporter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/models/transporter.model.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/services/home.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/services/home.service.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/services/signalr.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/services/signalr.service.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/shared/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/app/shared/app.constants.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/environments/environment.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/index.html -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/main.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/polyfills.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/styles.css -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/styles.less -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/styles.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/test.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/tsconfig.app.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/src/typings.d.ts -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/tsconfig.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.Angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.Angular/tslint.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/AutoRefresh/AutoRefreshBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/AutoRefresh/AutoRefreshBuilderExtensions.cs -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/AutoRefresh/AutoRefreshConfigureCookieOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/AutoRefresh/AutoRefreshConfigureCookieOptions.cs -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/AutoRefresh/AutoRefreshCookieEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/AutoRefresh/AutoRefreshCookieEvents.cs -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/AutoRefresh/AutoRefreshOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/AutoRefresh/AutoRefreshOptions.cs -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Controllers/ApiOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Controllers/ApiOwner.cs -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Controllers/ApiTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Controllers/ApiTenant.cs -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Hostel.Web.Portal.MVC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Hostel.Web.Portal.MVC.csproj -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Program.cs -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Properties/launchSettings.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Startup.cs -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/appsettings.Development.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/appsettings.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/css/site.css -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/js/site.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Presentation/Web/Portal/Hostel.Web.Portal.MVC/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/README.md -------------------------------------------------------------------------------- /Shared/Actors/HostelActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/Actors/HostelActor.cs -------------------------------------------------------------------------------- /Shared/Dto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/Dto.cs -------------------------------------------------------------------------------- /Shared/HandlerResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/HandlerResult.cs -------------------------------------------------------------------------------- /Shared/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/ICommand.cs -------------------------------------------------------------------------------- /Shared/ICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/ICommandHandler.cs -------------------------------------------------------------------------------- /Shared/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/IEvent.cs -------------------------------------------------------------------------------- /Shared/IMassTransitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/IMassTransitCommand.cs -------------------------------------------------------------------------------- /Shared/IMassTransitEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/IMassTransitEvent.cs -------------------------------------------------------------------------------- /Shared/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/IMessage.cs -------------------------------------------------------------------------------- /Shared/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/IQuery.cs -------------------------------------------------------------------------------- /Shared/IState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/IState.cs -------------------------------------------------------------------------------- /Shared/ISystemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/ISystemCommand.cs -------------------------------------------------------------------------------- /Shared/ISystemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/ISystemEvent.cs -------------------------------------------------------------------------------- /Shared/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/Message.cs -------------------------------------------------------------------------------- /Shared/ObserverSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/ObserverSubscriber.cs -------------------------------------------------------------------------------- /Shared/Repository/IDataTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/Repository/IDataTypes.cs -------------------------------------------------------------------------------- /Shared/Repository/IDbProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/Repository/IDbProperties.cs -------------------------------------------------------------------------------- /Shared/Repository/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/Repository/IRepository.cs -------------------------------------------------------------------------------- /Shared/Repository/Impl/DataTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/Repository/Impl/DataTypes.cs -------------------------------------------------------------------------------- /Shared/Repository/Impl/DbProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/Repository/Impl/DbProperties.cs -------------------------------------------------------------------------------- /Shared/Repository/Impl/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/Repository/Impl/Repository.cs -------------------------------------------------------------------------------- /Shared/Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/Shared.csproj -------------------------------------------------------------------------------- /Shared/SourceObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/Shared/SourceObservable.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/HTTP/Enums/Timeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/HTTP/Enums/Timeout.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/HTTP/HttpAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/HTTP/HttpAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/HTTP/IAddAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/HTTP/IAddAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/HTTP/IDeleteAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/HTTP/IDeleteAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/HTTP/IFlushAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/HTTP/IFlushAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/HTTP/IHttpAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/HTTP/IHttpAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/HTTP/IShowAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/HTTP/IShowAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/INetSH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/INetSH.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/NetSh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/NetSh.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/AuthMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/AuthMode.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/Authentication.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/ConnectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/ConnectionMode.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/ConnectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/ConnectionType.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/Cost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/Cost.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/Display.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/Encryption.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/KeyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/KeyType.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/KeyUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/KeyUsage.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/Mode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/Mode.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/NetworkMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/NetworkMode.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/NetworkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/NetworkType.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/Permission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/Permission.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/ProfileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/ProfileType.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/SsoMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/SsoMode.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/TracingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/TracingMode.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/Enums/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/Enums/User.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/IAddAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/IAddAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/IDeleteAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/IDeleteAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/ISetAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/ISetAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/IShowAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/IShowAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/IWlanAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/IWlanAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Actions/WLAN/WlanAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Actions/WLAN/WlanAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Attributes/BooleanValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Attributes/BooleanValueAttribute.cs -------------------------------------------------------------------------------- /SharpNetSH/Attributes/MethodNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Attributes/MethodNameAttribute.cs -------------------------------------------------------------------------------- /SharpNetSH/Attributes/ParameterNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Attributes/ParameterNameAttribute.cs -------------------------------------------------------------------------------- /SharpNetSH/Attributes/ResponseProcessorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Attributes/ResponseProcessorAttribute.cs -------------------------------------------------------------------------------- /SharpNetSH/Harnesses/CommandLineHarness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Harnesses/CommandLineHarness.cs -------------------------------------------------------------------------------- /SharpNetSH/Harnesses/ConsoleLogHarness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Harnesses/ConsoleLogHarness.cs -------------------------------------------------------------------------------- /SharpNetSH/Interfaces/IAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Interfaces/IAction.cs -------------------------------------------------------------------------------- /SharpNetSH/Interfaces/IActionNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Interfaces/IActionNameProvider.cs -------------------------------------------------------------------------------- /SharpNetSH/Interfaces/IExecutionHarness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Interfaces/IExecutionHarness.cs -------------------------------------------------------------------------------- /SharpNetSH/Interfaces/IInitializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Interfaces/IInitializable.cs -------------------------------------------------------------------------------- /SharpNetSH/Interfaces/IOutputObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Interfaces/IOutputObject.cs -------------------------------------------------------------------------------- /SharpNetSH/Interfaces/IResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Interfaces/IResponse.cs -------------------------------------------------------------------------------- /SharpNetSH/Interfaces/IResponseProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Interfaces/IResponseProcessor.cs -------------------------------------------------------------------------------- /SharpNetSH/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpNetSH/ResponseProcessors/BlockProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/ResponseProcessors/BlockProcessor.cs -------------------------------------------------------------------------------- /SharpNetSH/ResponseProcessors/ExitCodeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/ResponseProcessors/ExitCodeProcessor.cs -------------------------------------------------------------------------------- /SharpNetSH/ResponseProcessors/SkipHeaderProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/ResponseProcessors/SkipHeaderProcessor.cs -------------------------------------------------------------------------------- /SharpNetSH/ResponseProcessors/StandardResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/ResponseProcessors/StandardResponse.cs -------------------------------------------------------------------------------- /SharpNetSH/ResponseProcessors/TabulatedObjectProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/ResponseProcessors/TabulatedObjectProcessor.cs -------------------------------------------------------------------------------- /SharpNetSH/ResponseProcessors/TrimProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/ResponseProcessors/TrimProcessor.cs -------------------------------------------------------------------------------- /SharpNetSH/SharpNetSH.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/SharpNetSH.csproj -------------------------------------------------------------------------------- /SharpNetSH/Utilities/ActionProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Utilities/ActionProxy.cs -------------------------------------------------------------------------------- /SharpNetSH/Utilities/BooleanType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Utilities/BooleanType.cs -------------------------------------------------------------------------------- /SharpNetSH/Utilities/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Utilities/ExtensionMethods.cs -------------------------------------------------------------------------------- /SharpNetSH/Utilities/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/SharpNetSH/Utilities/Tree.cs -------------------------------------------------------------------------------- /docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/docker-compose.dcproj -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /hostel.home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaba/Hostel/HEAD/hostel.home.gif --------------------------------------------------------------------------------