14 lines
486 B
C#
14 lines
486 B
C#
|
using PolyclinicDataModels.Models;
|
|||
|
|
|||
|
namespace PolyclinicDatabaseImplement.Models
|
|||
|
{
|
|||
|
public class Medicament : IMedicamentModel
|
|||
|
{
|
|||
|
public string Name => throw new NotImplementedException();
|
|||
|
public string Comment => throw new NotImplementedException();
|
|||
|
public int ProcedureId => throw new NotImplementedException();
|
|||
|
public int SymptomId => throw new NotImplementedException();
|
|||
|
public int Id => throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|