Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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();
- }
- }
- }
|