11 lines
No EOL
287 B
C#
11 lines
No EOL
287 B
C#
namespace Yavsc.Server.Helpers
|
|
{
|
|
public static class DbHelpers
|
|
{
|
|
static string _connectionString = null;
|
|
public static string ConnectionString {
|
|
get { return _connectionString = null; }
|
|
set { _connectionString = value; }
|
|
}
|
|
}
|
|
} |