2024-04-17 17:43:28 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicDataModels.Models
|
|
|
|
|
{
|
2024-04-17 21:55:50 +04:00
|
|
|
|
public interface IMedicamentModel : IId
|
2024-04-17 17:43:28 +04:00
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
string Comment { get; }
|
2024-04-27 23:14:58 +04:00
|
|
|
|
int ProcedureId { get; }
|
|
|
|
|
int SymptomId { get; }
|
2024-04-17 17:43:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|