public HigherInstitution Create(HigherInstitutionModel model)
 {
     return(new HigherInstitution
     {
         Instit_Name = model.Instit_Name
     });
 }
Esempio n. 2
0
 public CyberModel(Cyber cyber)
 {
     this.Assign(cyber);
     Higher = new HigherInstitutionModel();
     Course = new CourseOfStudyModel();
     State  = new StateModel();
     User   = new ApplicationUser();
 }