13 lines
444 B
C#
13 lines
444 B
C#
using PolyclinicDataModels.Models;
|
|
|
|
namespace PolyclinicDatabaseImplement.Models
|
|
{
|
|
public class Symptom : ISymptomModel
|
|
{
|
|
public string Name => throw new NotImplementedException();
|
|
public string Comment => throw new NotImplementedException();
|
|
public Dictionary<int, IDiagnoseModel> SymptomDiagnoses => throw new NotImplementedException();
|
|
public int Id => throw new NotImplementedException();
|
|
}
|
|
}
|