stage5_models_and_storages_contracts_lena #2

Merged
ekallin merged 11 commits from stage5_models_and_storages_contracts_lena into stage5_models_and_storages_contracts 2024-04-27 10:36:38 +04:00
5 changed files with 59 additions and 4 deletions
Showing only changes of commit 8bd20e8bbd - Show all commits

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>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
</ItemGroup>
</Project>