Допилила модели

This commit is contained in:
Alenka 2024-04-23 23:06:04 +04:00
parent 7629dc561b
commit c0058315ee
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalDataModels.Models
{
internal interface IDescriptionProcedure
{
string Description { get; }
int PharmacistId { get; }
}
}

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalDataModels.Models
{
internal interface IDisease
{
string Name { get; }
string Description { get; }
int DoctorId { get; }
}
}