Added functionality of Service Levels
This commit is contained in:
parent
4c58752483
commit
b1c52c36eb
39 changed files with 2282 additions and 175 deletions
|
@ -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; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue