Added functionality of Service Levels
This commit is contained in:
parent
4c58752483
commit
b1c52c36eb
39 changed files with 2282 additions and 175 deletions
|
@ -0,0 +1,33 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace WebsitePanel.EnterpriseServer.Base.HostedSolution
|
||||
{
|
||||
public class ServiceLevel
|
||||
{
|
||||
int levelId;
|
||||
string levelName;
|
||||
string levelDescription;
|
||||
|
||||
public int LevelId
|
||||
{
|
||||
get { return levelId; }
|
||||
set { levelId = value; }
|
||||
}
|
||||
|
||||
public string LevelName
|
||||
{
|
||||
get { return levelName; }
|
||||
set { levelName = value; }
|
||||
}
|
||||
|
||||
public string LevelDescription
|
||||
{
|
||||
get { return levelDescription; }
|
||||
set { levelDescription = value; }
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -255,5 +255,6 @@ order by rg.groupOrder
|
|||
public const string ENTERPRISESTORAGE_FOLDERS = "EnterpriseStorage.Folders";
|
||||
public const string ENTERPRICESTORAGE_DRIVEMAPS = "EnterpriseStorage.DriveMaps";
|
||||
|
||||
public const string SERVICE_LEVELS = "ServiceLevel.";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -55,5 +55,6 @@ namespace WebsitePanel.EnterpriseServer
|
|||
public const string VPSForPC = "VPSForPC";
|
||||
public const string Lync = "Lync";
|
||||
public const string EnterpriseStorage = "EnterpriseStorage";
|
||||
public const string ServiceLevels = "Service Levels";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -117,6 +117,7 @@
|
|||
<Compile Include="Ecommerce\TriggerSystem\ITriggerHandler.cs" />
|
||||
<Compile Include="ExchangeServer\ExchangeEmailAddress.cs" />
|
||||
<Compile Include="HostedSolution\AdditionalGroup.cs" />
|
||||
<Compile Include="HostedSolution\ServiceLevel.cs" />
|
||||
<Compile Include="HostedSolution\CRMLycenseTypes.cs" />
|
||||
<Compile Include="HostedSolution\ESPermission.cs" />
|
||||
<Compile Include="Log\LogRecord.cs" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue