├── .gitignore ├── Features ├── RemoteIp │ ├── RemoteIpMessageProvider.cs │ └── Startup.cs └── TimeOfDay │ ├── Startup.cs │ └── TimeOfDayMessageProvider.cs ├── LICENSE ├── MultiTenantApp.csproj ├── Program.cs ├── README.md ├── Services └── IMessageProvider.cs ├── Startup.cs └── tenants.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/.gitignore -------------------------------------------------------------------------------- /Features/RemoteIp/RemoteIpMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/Features/RemoteIp/RemoteIpMessageProvider.cs -------------------------------------------------------------------------------- /Features/RemoteIp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/Features/RemoteIp/Startup.cs -------------------------------------------------------------------------------- /Features/TimeOfDay/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/Features/TimeOfDay/Startup.cs -------------------------------------------------------------------------------- /Features/TimeOfDay/TimeOfDayMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/Features/TimeOfDay/TimeOfDayMessageProvider.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/LICENSE -------------------------------------------------------------------------------- /MultiTenantApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/MultiTenantApp.csproj -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/README.md -------------------------------------------------------------------------------- /Services/IMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/Services/IMessageProvider.cs -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/Startup.cs -------------------------------------------------------------------------------- /tenants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtlnl/MultiTenantApp/HEAD/tenants.json --------------------------------------------------------------------------------