Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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<SyncInstrumentItemInfo> GetSyncInstrumentItemInfos()
- {
- return iinstrument.GetAllInstruments();
- }
- }
- }
|