CNAS取数仪器端升级
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

InstrumentInfoBLL.cs 512B

4 mesi fa
123456789101112131415161718192021
  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. }