using System; using System.Collections.Generic; using System.Text; namespace AccessStudy.Core { public interface IStudentIDal { List GetAll(); /// /// 按标识查询学生 /// Student Get(int studentId); /// /// 按名称查询学生 /// Student Get(string studentName); /// /// 添加学生 /// bool Add(Student student); /// /// 更新学生 /// bool Update(Student student); /// /// 删除学生 /// bool Delete(int studentId); } }