Исполнитель: создал модели данных

This commit is contained in:
Yunusov_Niyaz 2024-04-23 19:40:45 +04:00
parent ae8afed167
commit 0bcd99d102
4 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,9 @@
namespace VeterinaryDataModels
{
public interface IOwnerModel : IId
{
string OwnerFIO { get; }
string Login { get; }
string Password { get; }
}
}

View File

@ -0,0 +1,11 @@
namespace VeterinaryDataModels
{
public interface IPetModel : IId
{
int OwnerId { get; }
string PetName { get; }
string PetType { get; }
string PetBreed { get; }
string PetGender { get; }
}
}

View File

@ -0,0 +1,10 @@
namespace VeterinaryDataModels
{
public interface IPurchaseModel : IId
{
int OwnerId { get; }
int DrugId { get; }
string Count { get; }
DateTime DatePurchase { get; }
}
}

View File

@ -0,0 +1,9 @@
namespace VeterinaryDataModels
{
public interface IVisitModel : IId
{
int OwnerId { get; }
int DoctorId { get; }
DateTime DateVisit { get; }
}
}