using HighWayIot.Log4net; using HighWayIot.Repository.domain; using HighWayIot.Repository.service; using HighWayIot.Repository.service.Impl; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Aucma.Scada.Business { public class MainBusiness { private static readonly Lazy lazy = new Lazy(() => new MainBusiness()); public static MainBusiness Instance { get { return lazy.Value; } } private LogHelper logHelper = LogHelper.Instance; private IBaseSpaceInfoService _spaceInfoService = new BaseSpaceInfoServiceImpl(); private IRealTaskInfoService _taskInfoService = new RealTaskInfoServiceImpl(); public MainBusiness() { //初始化扫码器 //初始化PLC //初始化货道信息,保证系统内的库存信息与实物一致 } } }