电子药箱通讯服务端
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

IItemBLL.cs 641B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ServiceModel;
  6. using RDH.Data.Models;
  7. //:IRegable ,IBaseBLL<Item>,ISnapshotBLL<Item>
  8. namespace RDH.Data.BLL
  9. {
  10. public partial interface IItemBLL:IRegable ,IBaseBLL<Item>,ISnapshotBLL<Item>
  11. {
  12. IEnumerable<Item> ListItems(string filter, int index, int size);
  13. Item GetByItemId(string itemId);
  14. Item GetByItemCurrentId(string itemId);
  15. Item GetIsActiveItem(Item _itemKey);
  16. int GetCount(string filter);
  17. IEnumerable<Item> ListItemsWithConfigCount(DispensingDevice device, String filter);
  18. }
  19. }