using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ServiceModel; using RDH.Data.Models; //:IRegable ,IBaseBLL,ISnapshotBLL namespace RDH.Data.BLL { public partial interface IItemBLL:IRegable ,IBaseBLL,ISnapshotBLL { IEnumerable ListItems(string filter, int index, int size); Item GetByItemId(string itemId); Item GetByItemCurrentId(string itemId); Item GetIsActiveItem(Item _itemKey); int GetCount(string filter); IEnumerable ListItemsWithConfigCount(DispensingDevice device, String filter); } }