2 using System.ComponentModel.DataAnnotations;
9 public string PlaceOfInternship {
get;
set; }
12 [DataType(DataType.Date)]
13 public DateTime Started {
get;
set; }
16 [DataType(DataType.Date)]
17 public DateTime Ended {
get;
set; }
20 public string Contents {
get;
set; }
28 PlaceOfInternship = scientificInternship.PlaceOfInternship;
29 Started = scientificInternship.Started;
30 Ended = scientificInternship.Ended;
31 Contents = scientificInternship.Contents;
ScientificInternshipModel(DAL.Entities.ScientificInternship scientificInternship)
ScientificInternshipModel()