private string GetGenericRenderManagerType(RenderManagerType type)
 {
     switch (type)
     {
     case RenderManagerType.Qube610:
     case RenderManagerType.Qube70: return("Qube");
     }
     return(type.ToString());
 }
 public EnvironmentStorageConfigModel(RenderManagerType renderManagerType, StorageProperties storageProps)
 {
     RenderManagerType = renderManagerType;
     AccountName       = storageProps.AccountName;
     Uri          = storageProps.Uri;
     PrimaryKey   = storageProps.PrimaryKey;
     SecondaryKey = storageProps.SecondaryKey;
     FileShares   = storageProps.Shares;
 }