Fixed: DomainItemId field added to the Domains table to register the
relationship between a domain pointer and domain. Updated depended procedures and methods
This commit is contained in:
parent
14b7f86cee
commit
cc6277c8d7
5 changed files with 212 additions and 81 deletions
|
@ -36,6 +36,7 @@ namespace WebsitePanel.EnterpriseServer
|
|||
private int domainId;
|
||||
private int packageId;
|
||||
private int zoneItemId;
|
||||
private int domainItemId;
|
||||
private string domainName;
|
||||
private bool hostingAllowed;
|
||||
private int webSiteId;
|
||||
|
@ -68,6 +69,13 @@ namespace WebsitePanel.EnterpriseServer
|
|||
set { zoneItemId = value; }
|
||||
}
|
||||
|
||||
public int DomainItemId
|
||||
{
|
||||
get { return domainItemId; }
|
||||
set { domainItemId = value; }
|
||||
}
|
||||
|
||||
|
||||
public string DomainName
|
||||
{
|
||||
get { return domainName; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue