ScientificReport
ReportThesisModel.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 
4 namespace ScientificReport.DTO.Models.ReportThesis
5 {
6  public class ReportThesisModel
7  {
8  public string Thesis { get; set; }
9 
10  public Guid ConferenceId { get; set; }
11 
12  public DAL.Entities.Conference Conference { get; set; }
13 
14  public IEnumerable<DAL.Entities.Conference> Conferences { get; set; }
15 
17  {
18  }
19 
20  public ReportThesisModel(DAL.Entities.ReportThesis reportThesis)
21  {
22  Thesis = reportThesis.Thesis;
23  Conference = reportThesis.Conference;
24  }
25  }
26 }
ReportThesisModel(DAL.Entities.ReportThesis reportThesis)