private void CreateNewStudent(StudentModel student) { if (student.FullName == "") { return; } studentDAL.CreateItem(student); LoadStudentRepo(); }