using CnasLocalIDAL; using CnasSynchrousModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using SyncLocalDAL; namespace CnasSynchronusClient { public class InstrumentInfoBLL { public IInstrument iinstrument { get { return new InstrumentInfoDAL(); } } //获取本地存储的仪器信息 public List GetSyncInstrumentItemInfos() { return iinstrument.GetAllInstruments(); } } }