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-17 23:03:34 +04:00
|
|
|
|
Dictionary<int, ISymptomModel> MedicamentSymptom { get; }
|
|
|
|
|
Dictionary<int, IProcedureModel> MedicamentProcedure { get; }
|
2024-04-17 17:43:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|