コード例 #1
0
ファイル: DataChecks.cs プロジェクト: zixingcheng/zxcProj
 public DataChecks(string tagName, IDataCache dataCache, IDataChecks parent = null, IDataCheck_Msger msger = null)
 {
     _tag        = tagName;
     _Msger      = msger;
     _Parent     = parent;
     _DataCache  = dataCache;
     _DataChecks = new Dictionary <string, IDataCheck>();
 }
コード例 #2
0
 public virtual bool InitDataCheck_Msger(IDataCheck_Msger msger)
 {
     _Msger = msger;
     return(true);
 }
コード例 #3
0
 public DataChecks_Quote(string tagName, IDataCaches_Manage dataCaches_Manage, IDataChecks parent = null, IDataCheck_Msger msger = null) : base(tagName, dataCaches_Manage, parent, msger)
 {
 }