namespace IStation.Settings
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class ParasHelper
|
{
|
/// <summary>
|
/// 众毅对接
|
/// </summary>
|
public static Paras_ZyDocking ZyDocking
|
{
|
get { return FileHelper.Get().ZyDocking; }
|
}
|
|
/// <summary>
|
/// 本地文件
|
/// </summary>
|
public static Paras_LocalFile LocalFile
|
{
|
get { return FileHelper.Get().LocalFile; }
|
}
|
|
/// <summary>
|
/// 数据库
|
/// </summary>
|
public static Paras_DataBase DataBase
|
{
|
get { return FileHelper.Get().DataBase; }
|
}
|
|
/// <summary>
|
/// Task
|
/// </summary>
|
public static Paras_Task Task
|
{
|
get { return FileHelper.Get().Task; }
|
}
|
|
/// <summary>
|
/// 保存
|
/// </summary>
|
public static bool Save()
|
{
|
return FileHelper.Save();
|
}
|
|
|
}
|
}
|