CNAS取数仪器端升级
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
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. }