using FLY.IBC.Common;
using FLY.OBJComponents.IService;
using FObjBase;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FLY.IBC.IService
{
    public interface IIbcSystemService:INotifyPropertyChanged
    {
        /// <summary>
        /// 数据
        /// </summary>
        IBCData Item { get; }

        /// <summary>
        /// 各层称重
        /// </summary>
        ObservableCollection<TempArea> TAreas { get; }
        /// <summary>
        /// PLC代理系统
        /// </summary>
        IPLCProxySystemService PLCos { get; }

        /// <summary>
        /// 层数
        /// </summary>
        int TAreasCnt { get; }
    }
}