ScientificReport
ScientificConsultationEditModel.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
3 
4 namespace ScientificReport.DTO.Models.ScientificConsultation
5 {
7  {
8  [Required]
9  public Guid Id { get; set; }
10 
12  {
13  }
14 
15  public ScientificConsultationEditModel(DAL.Entities.ScientificConsultation scientificConsultation) : base(scientificConsultation)
16  {
17  Id = scientificConsultation.Id;
18  }
19  }
20 }
ScientificConsultationEditModel(DAL.Entities.ScientificConsultation scientificConsultation)