Merge branch 'main' of https://git.is.ulstu.ru/antic0der/PIbd-23_Nasyrov_A_Yunusov_N_CourseWork_Veterinary
This commit is contained in:
commit
956d21ae64
@ -6,4 +6,12 @@
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="StorageContracts\" />
|
||||
<Folder Include="BindingModels\" />
|
||||
<Folder Include="SearchModels\" />
|
||||
<Folder Include="ViewModels\" />
|
||||
<Folder Include="BindingLogicContracts\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
16
VeterinaryView/VeterinaryDataModels/IDoctorModel.cs
Normal file
16
VeterinaryView/VeterinaryDataModels/IDoctorModel.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VeterinaryDataModels
|
||||
{
|
||||
public interface IDoctorModel : IId
|
||||
{
|
||||
string DoctorFIO { get; }
|
||||
string Login { get; }
|
||||
string Password { get; }
|
||||
|
||||
}
|
||||
}
|
15
VeterinaryView/VeterinaryDataModels/IDrugModel.cs
Normal file
15
VeterinaryView/VeterinaryDataModels/IDrugModel.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VeterinaryDataModels
|
||||
{
|
||||
public interface IDrugModel :IId
|
||||
{
|
||||
string DrugName { get; }
|
||||
int Count { get; }
|
||||
int MedicationId { get; }
|
||||
}
|
||||
}
|
15
VeterinaryView/VeterinaryDataModels/IMedicationModel.cs
Normal file
15
VeterinaryView/VeterinaryDataModels/IMedicationModel.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VeterinaryDataModels
|
||||
{
|
||||
public interface IMedicationModel : IId
|
||||
{
|
||||
string MedicationName { get;}
|
||||
double Price { get;}
|
||||
int DoctorId { get;}
|
||||
}
|
||||
}
|
16
VeterinaryView/VeterinaryDataModels/IServiceModel.cs
Normal file
16
VeterinaryView/VeterinaryDataModels/IServiceModel.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VeterinaryDataModels
|
||||
{
|
||||
public interface IServiceModel : IId
|
||||
{
|
||||
String ServiceName { get;}
|
||||
int VisitId { get; }
|
||||
int DoctorId { get; }
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user