コード例 #1
0
        public bool Start()
        {
            mbRepository           = ServiceFactory.Create <IJC_MbRepository>();
            ratioAlarmCacheService = ServiceFactory.Create <IRatioAlarmCacheService>();

            EndAllAlarmBySql();

            isStop = false;
            if (thread == null)
            {
                thread = new Thread(DataProc);
            }
            thread.Start();
            return(true);
        }
コード例 #2
0
 public JC_MbService(IJC_MbRepository _Repository)
 {
     this._Repository = _Repository;
 }