Example #1
0
 public String[] GetTenants()
 {
     // This is the list of all the tenants currently loaded in the data model.
     return(DataModelService.GetTenants());
 }
Example #2
0
 public void LoadTenant(String tenantName, String connectionString)
 {
     // This will load the tenant into the server.
     DataModelService.LoadTenant(tenantName, connectionString);
 }
Example #3
0
 public void UnloadTenant(String tenantName)
 {
     // This will unload the organziation from the server.
     DataModelService.UnloadTenant(tenantName);
 }