Лена. Добавила интерфейсы моделей данных для 5 этапа

This commit is contained in:
ekallin 2024-04-17 17:43:28 +04:00
parent 95bc89fd29
commit 8bd20e8bbd
5 changed files with 59 additions and 4 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicDataModels.Models
{
public interface IMedicament : IId
{
string Name { get; }
string Comment { get; }
}
}

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicDataModels.Models
{
public interface IProcedure : IId
{
string Name { get; }
string Comment { get; }
}
}

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicDataModels.Models
{
public interface IReciept : IId
{
int CountProcedures { get; set; }
string Comment { get; set; }
}
}

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicDataModels.Models
{
public interface ISuretor : IId
{
string FIO { get; }
DateTime BirthDay { get; }
string Password { get; }
string RepeatPassword { get; }
}
}

View File

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