13 lines
310 B
C#
13 lines
310 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using DataDomain;
|
|
|
|
namespace StockBL.Interface
|
|
{
|
|
public interface IPersonStockFacade
|
|
{
|
|
IEnumerable<StockMember> GetAllSharesConnectedTo(int personId);
|
|
System.Collections.Generic.IEnumerable<StockMember> GetUnconnectedShares();
|
|
}
|
|
}
|