påbörjat hantering olika portföljer

This commit is contained in:
2021-03-13 00:08:11 +01:00
parent b4a9237290
commit b25c6fd538
18 changed files with 454 additions and 71 deletions

View File

@ -0,0 +1,10 @@
using StockBL.Interface;
using System;
namespace StockBL
{
public class PersonStockFacade : IPersonStockFacade
{
}
}

11
StockBL/StockBL.csproj Normal file
View File

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\StockBL.Interface\StockBL.Interface.csproj" />
</ItemGroup>
</Project>