using System; using System.Collections.Generic; using DataDomain; namespace StockBL.Interface { public interface IPersonStockFacade { IEnumerable GetAllSharesConnectedTo(int personId); System.Collections.Generic.IEnumerable GetUnconnectedShares(); } }