ScientificReport
ReportThesisEdit.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel.DataAnnotations;
4 
5 namespace ScientificReport.DTO.Models.ReportThesis
6 {
8  {
9  [Required]
10  public Guid Id { get; set; }
11 
12  public IEnumerable<DAL.Entities.UserProfile.UserProfile> Authors { get; set; }
13 
14  public IEnumerable<DAL.Entities.UserProfile.UserProfile> Users { get; set; }
15 
17  {
18  }
19 
20  public ReportThesisEdit(DAL.Entities.ReportThesis reportThesis) : base(reportThesis)
21  {
22  Id = reportThesis.Id;
23  }
24  }
25 }
ReportThesisEdit(DAL.Entities.ReportThesis reportThesis)