Add project files.
This commit is contained in:
12
StockBL.Interface/IPersonStockFacade.cs
Normal file
12
StockBL.Interface/IPersonStockFacade.cs
Normal file
@ -0,0 +1,12 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
11
StockBL.Interface/StockBL.Interface.csproj
Normal file
11
StockBL.Interface/StockBL.Interface.csproj
Normal file
@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\DataDomain\DataDomain.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user