Yunusov_Niyaz 2024-04-23 19:41:24 +04:00
commit 956d21ae64
5 changed files with 70 additions and 0 deletions

View File

@ -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>

View 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; }
}
}

View 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; }
}
}

View 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;}
}
}

View 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; }
}
}