13 lines
446 B
C#
13 lines
446 B
C#
|
using PolyclinicDataModels.Models;
|
|||
|
|
|||
|
namespace PolyclinicDatabaseImplement.Models
|
|||
|
{
|
|||
|
public class Procedure : IProcedureModel
|
|||
|
{
|
|||
|
public string Name => throw new NotImplementedException();
|
|||
|
public string Comment => throw new NotImplementedException();
|
|||
|
public Dictionary<int, ICourseModel> ProcedureCourses => throw new NotImplementedException();
|
|||
|
public int Id => throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|