Merge commit

This commit is contained in:
robvde 2014-10-08 21:03:04 +08:00
commit 84a89d1d0a
83 changed files with 3190 additions and 445 deletions

View file

@ -51,6 +51,8 @@ namespace WebsitePanel.Providers.HostedSolution
string publicFolderPermission;
string userPrincipalName;
string notes;
int levelId;
bool isVip;
public int AccountId
{
@ -177,6 +179,20 @@ namespace WebsitePanel.Providers.HostedSolution
set { this.enableArchiving = value; }
}
public bool IsVIP
{
get { return this.isVip; }
set { this.isVip = value; }
}
public int LevelId
{
get { return this.levelId; }
set { this.levelId = value; }
}
public bool Disabled { get; set; }
public bool Locked { get; set; }
}
}

View file

@ -77,6 +77,8 @@ namespace WebsitePanel.Providers.HostedSolution
private OrganizationUser manager;
private Guid crmUserId;
private int levelId;
private bool isVip;
public Guid CrmUserId
{
@ -313,5 +315,17 @@ namespace WebsitePanel.Providers.HostedSolution
}
public int LevelId
{
get { return levelId; }
set { levelId = value; }
}
public bool IsVIP
{
get { return isVip; }
set { isVip = value; }
}
}
}