using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation
|
{
|
/// <summary>
|
/// 数据访问
|
/// </summary>
|
public class Paras_DataAccess
|
{
|
/// <summary>
|
/// 是否为远程模式
|
/// </summary>
|
public bool IsRemoteMode
|
{
|
get { return _isRemoteMode; }
|
set { _isRemoteMode = value; }
|
}
|
private bool _isRemoteMode = true;
|
|
|
/// <summary>
|
///
|
/// </summary>
|
public string DALNameSpace
|
{
|
get { return _nameSpace; }
|
set { _nameSpace = value; }
|
}
|
private string _nameSpace = "IStation.DAL.LocalFile";
|
|
|
/// <summary>
|
///
|
/// </summary>
|
public string LogicDLLName
|
{
|
get { return _logicDLLName; }
|
set { _logicDLLName = value; }
|
}
|
private string _logicDLLName = "IStation.DAL.LocalFile.Logic";
|
|
|
/// <summary>
|
///
|
/// </summary>
|
public string MonitorDLLName
|
{
|
get { return _monitorDLLName; }
|
set { _monitorDLLName = value; }
|
}
|
private string _monitorDLLName = "IStation.DAL.LocalFile.Monitor";
|
|
|
/// <summary>
|
///
|
/// </summary>
|
public string ProductDLLName
|
{
|
get { return _productDLLName; }
|
set { _productDLLName = value; }
|
}
|
private string _productDLLName = "IStation.DAL.LocalFile.Product";
|
|
|
/// <summary>
|
///
|
/// </summary>
|
public string ProjectDLLName
|
{
|
get { return _projectDLLName; }
|
set { _projectDLLName = value; }
|
}
|
private string _projectDLLName = "IStation.DAL.LocalFile.Project";
|
|
|
/// <summary>
|
///
|
/// </summary>
|
public string SceneDLLName
|
{
|
get { return _sceneDLLName; }
|
set { _sceneDLLName = value; }
|
}
|
private string _sceneDLLName = "IStation.DAL.LocalFile.Scene";
|
|
|
}
|
}
|