PIbd-21_CourseWork_Polyclin.../Polyclinic/PolyclinicDatabaseImplement/Models/Procedure.cs

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();
}
}