Exemplo n.º 1
0
 public RegisteredStudent Create(CreateStudent newRegistry)
 {
     using (SchoolDataContext schoolContext = new SchoolDataContext())
     {
         var newStudent = newRegistry.ToEntity();
         schoolContext.Students.Add(newStudent);
         schoolContext.SaveChanges();
         return(newStudent.toDTO());
     }
 }