public SchoolView(School School) : base(School.RID) { this.College = School.College; if ( School.Grade != null ) this.Grade = new GradeView(School.Grade); else this.Grade = new GradeView(); }
public SchoolInput( School model ) { this.College = model.College; if ( model.Grade != null ) this.Grade = model.Grade.RID; }