Создан интерфейс IDealModel (пустая папка не отражалась в коммите)

This commit is contained in:
abazov73 2023-04-01 20:40:29 +04:00
parent e0d2dc1030
commit f9a5a87373
2 changed files with 16 additions and 4 deletions

View File

@ -6,8 +6,4 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankDataModels.Models
{
public interface IDealModel : IId
{
int ClientId { get; }
DateTime Date { get; }
int OperatorId { get; }
int CreditProgramId { get; }
}
}