public static string GetTenantRootDirectory()
 {
     return(Path.Combine(SystemLocations.GetStorageDirectory(), "tenants"));
 }
 public static string GetTenantDirectory(string tenantName)
 {
     return(Path.Combine(SystemLocations.GetTenantRootDirectory(), tenantName));
 }