Built files from Bizgaze WebServer
Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
1234567891011121314 |
- class TenantInfo {
- constructor() {
- }
- static SetCurrentTenant(tenant) {
- TenantInfo.CurrentTenant = tenant;
- }
- static GetCurrentTenant() {
- var t = new TenantInfo();
- t.ServerUrl = "localhost";
- t.TenantId = 100010;
- TenantInfo.CurrentTenant = t;
- return TenantInfo.CurrentTenant;
- }
- }
|