ScientificReport
ScientificInternshipEditModel.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.ScientificInternship
6 {
8  {
9  [Required]
10  public Guid Id { get; set; }
11 
12  public IEnumerable<DAL.Entities.UserProfile.UserProfile> AllUsers { get; set; }
13 
14  public IEnumerable<DAL.Entities.UserProfile.UserProfile> Users { get; set; }
15 
17  {
18  }
19 
20  public ScientificInternshipEditModel(DAL.Entities.ScientificInternship scientificInternship) : base(scientificInternship)
21  {
22  Id = scientificInternship.Id;
23  }
24  }
25 }
ScientificInternshipEditModel(DAL.Entities.ScientificInternship scientificInternship)