CNAS取数仪器端升级
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ů.

22 řádky
512B

  1. using CnasLocalIDAL;
  2. using CnasSynchrousModel;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using SyncLocalDAL;
  8. namespace CnasSynchronusClient
  9. {
  10. public class InstrumentInfoBLL
  11. {
  12. public IInstrument iinstrument { get { return new InstrumentInfoDAL(); } }
  13. //获取本地存储的仪器信息
  14. public List<SyncInstrumentItemInfo> GetSyncInstrumentItemInfos()
  15. {
  16. return iinstrument.GetAllInstruments();
  17. }
  18. }
  19. }