Fixed display sql server external and internal name

This commit is contained in:
robvde 2012-08-09 00:35:38 +04:00
parent 6187d6f1ce
commit 3bee86e791
6 changed files with 56 additions and 66 deletions

View file

@ -40,6 +40,8 @@ namespace WebsitePanel.Providers.Database
private int logSize;
private string[] users;
private string location;
private string internalServerName;
private string externalServerName;
public SqlDatabase()
{
@ -92,5 +94,19 @@ namespace WebsitePanel.Providers.Database
get { return this.location; }
set { this.location = value; }
}
public string InternalServerName
{
get { return this.internalServerName; }
set { this.internalServerName = value; }
}
public string ExternalServerName
{
get { return this.externalServerName; }
set { this.externalServerName = value; }
}
}
}