public int Update(NameValueCollection parameters, NameValueCollection where, out ErrorEntity ErrInfo) { OEStudentChooseDA da = new OEStudentChooseDA(); int result = da.Update(parameters, where); if (result > 0) { ErrInfo = new ErrorEntity(RespCode.Success); } else { ErrInfo = new ErrorEntity(RespCode.SysError); } return result; }
public Int32 Insert(NameValueCollection parameters, out ErrorEntity ErrInfo) { OEStudentChooseDA da = new OEStudentChooseDA(); Int32 result = da.Insert(parameters); if (result > 0) { ErrInfo = new ErrorEntity(RespCode.Success); } else { ErrInfo = new ErrorEntity(RespCode.SysError); } return result; }
public List<OEStudentChoose> Select(NameValueCollection where, NameValueCollection orderby, int pageIndex, int pageSize, out int totalCount) { OEStudentChooseDA da = new OEStudentChooseDA(); return da.Select(where, orderby, pageIndex, pageSize, out totalCount).DataTableToList<OEStudentChoose>(); }
public List<OEStudentChoose> Select(NameValueCollection where, NameValueCollection orderby) { OEStudentChooseDA da = new OEStudentChooseDA(); return da.Select(where, orderby).DataTableToList<OEStudentChoose>(); }