aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Settings/DataBase.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-02-25 15:14:20 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-02-25 15:14:20 +0200
commite83057fa22e28c5fd231ae06a5a91464a6e3f596 (patch)
tree3bbfb628ae8015405d35fcec2d5c00eae9d15b0d /Software/Visual_Studio/Tango.Settings/DataBase.cs
parent5d883d4f6bd18ca80fe26b25ed04dc01d7544371 (diff)
downloadTango-e83057fa22e28c5fd231ae06a5a91464a6e3f596.tar.gz
Tango-e83057fa22e28c5fd231ae06a5a91464a6e3f596.zip
Integrated DB & MSUS to Twine Server.
Diffstat (limited to 'Software/Visual_Studio/Tango.Settings/DataBase.cs')
-rw-r--r--Software/Visual_Studio/Tango.Settings/DataBase.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/Software/Visual_Studio/Tango.Settings/DataBase.cs b/Software/Visual_Studio/Tango.Settings/DataBase.cs
index 4e5213b3f..22bbfe9a9 100644
--- a/Software/Visual_Studio/Tango.Settings/DataBase.cs
+++ b/Software/Visual_Studio/Tango.Settings/DataBase.cs
@@ -18,16 +18,11 @@ namespace Tango.Settings
public String SQLServerAddress { get; set; }
/// <summary>
- /// Gets or sets a value indicating whether to delete a record from database instead of setting IsDeleted to 'true'.
- /// </summary>
- public bool DeleteForReal { get; set; }
-
- /// <summary>
/// Initializes a new instance of the <see cref="DataBase"/> class.
/// </summary>
public DataBase()
{
- SQLServerAddress = "localhost\\SQLEXPRESS";
+ SQLServerAddress = "twine01\\SQLTWINE";
}
}
}