using PolyclinicDataModels.Models; namespace PolyclinicDatabaseImplement.Models { public class Symptom : ISymptomModel { public string Name => throw new NotImplementedException(); public string Comment => throw new NotImplementedException(); public Dictionary SymptomDiagnoses => throw new NotImplementedException(); public int Id => throw new NotImplementedException(); } }