/// <summary> /// 添加“学生” /// </summary> /// <param name="model"></param> /// <returns></returns> public bool AddStudent(Student model) { return(idal_student.AddStudent(model) > 0); }
public CustomMessage AddStudent(IStudentBO studentBO) { return(_iStudentDAL.AddStudent(studentBO)); }