24 lines
607 B
C#
24 lines
607 B
C#
using PolyclinicDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PolyclinicContracts.ViewModels
|
|
{
|
|
public class ProcedureView : IProcedureModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[DisplayName("Название процедуры")]
|
|
public string Name { get; set; }
|
|
|
|
[DisplayName("Комментарий")]
|
|
public string Comment { get; set; }
|
|
|
|
public Dictionary<int, ICourseModel> ProcedureCourse { get; set; } = new();
|
|
|
|
}
|
|
} |