Исполнитель: создал модели данных
This commit is contained in:
parent
ae8afed167
commit
0bcd99d102
9
VeterinaryView/VeterinaryDataModels/IOwnerModel.cs
Normal file
9
VeterinaryView/VeterinaryDataModels/IOwnerModel.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace VeterinaryDataModels
|
||||
{
|
||||
public interface IOwnerModel : IId
|
||||
{
|
||||
string OwnerFIO { get; }
|
||||
string Login { get; }
|
||||
string Password { get; }
|
||||
}
|
||||
}
|
11
VeterinaryView/VeterinaryDataModels/IPetModel.cs
Normal file
11
VeterinaryView/VeterinaryDataModels/IPetModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
10
VeterinaryView/VeterinaryDataModels/IPurchaseModel.cs
Normal file
10
VeterinaryView/VeterinaryDataModels/IPurchaseModel.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace VeterinaryDataModels
|
||||
{
|
||||
public interface IPurchaseModel : IId
|
||||
{
|
||||
int OwnerId { get; }
|
||||
int DrugId { get; }
|
||||
string Count { get; }
|
||||
DateTime DatePurchase { get; }
|
||||
}
|
||||
}
|
9
VeterinaryView/VeterinaryDataModels/IVisitModel.cs
Normal file
9
VeterinaryView/VeterinaryDataModels/IVisitModel.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace VeterinaryDataModels
|
||||
{
|
||||
public interface IVisitModel : IId
|
||||
{
|
||||
int OwnerId { get; }
|
||||
int DoctorId { get; }
|
||||
DateTime DateVisit { get; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user