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