Exemplo n.º 1
0
 public ClusterGroup(
     string accountId,
     CloudAccountType accountType,
     string title)
 {
     this.AccountId   = accountId;
     this.AccountType = accountType;
     this.Title       = title;
 }
Exemplo n.º 2
0
 public CloudAccount(
     string id,
     string name,
     CloudAccountType accountType)
 {
     this.Id          = id;
     this.Name        = name;
     this.AccountType = accountType;
 }
Exemplo n.º 3
0
 public Cluster(
     string id,
     string name,
     string accountId,
     CloudAccountType accountType)
 {
     this.Id          = id;
     this.Name        = name;
     this.AccountId   = accountId;
     this.AccountType = accountType;
 }