Реализована логика сущности "Магазин"

This commit is contained in:
Данияр Аглиуллов 2023-02-05 14:55:50 +04:00
parent d747d797fc
commit 2aa903dd99
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryBusinessLogic
{
internal class ShopLogic
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.BusinessLogicsContracts
{
internal interface IShopLogic
{
}
}