public List <BLLStudentInfo> Selectstudentinfobyid(BLLStudentInfo objbll) { DALStudentInfo objdal = new DALStudentInfo(); return(objdal.Selectstudentinfobyid(objbll)); }
public int UpdateStudentInfo(BLLStudentInfo objbll) { DALStudentInfo objdal = new DALStudentInfo(); return(objdal.UpdateStudentInfo(objbll)); }
public int DeleteStudentInfo(BLLStudentInfo objbll) { DALStudentInfo objdal = new DALStudentInfo(); return(objdal.DeleteStudentInfo(objbll)); }
public List <BLLStudentInfo> SelectStuLogin(BLLStudentInfo objbll) { DALStudentInfo objdal = new DALStudentInfo(); return(objdal.SelectStuLogin(objbll)); }
public List <BLLStudentInfo> Selectstunamebyrollno(BLLStudentInfo objbll) { DALStudentInfo objdal = new DALStudentInfo(); return(objdal.Selectstunamebyrollno(objbll)); }
public List <BLLStudentInfo> SelectMaxRollno() { DALStudentInfo objdal = new DALStudentInfo(); return(objdal.SelectMaxRollno()); }
public int InsertStudentInfo(BLLStudentInfo objbll) { DALStudentInfo objdal = new DALStudentInfo(); return(objdal.InsertStudentInfo(objbll)); }