шумные улицы, жуткие тусы
This commit is contained in:
parent
ae8afed167
commit
7c8fa00a1d
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