public Int64 Insert(NameValueCollection parameters, out ErrorEntity ErrInfo) { OEExamPaperDA da = new OEExamPaperDA(); Int64 result = da.InsertAndReturnId64(parameters); if (result > 0) { ErrInfo = new ErrorEntity(RespCode.Success); } else { ErrInfo = new ErrorEntity(RespCode.SysError); } return result; }
public int Delete(NameValueCollection where, out ErrorEntity ErrInfo) { OEExamPaperDA da = new OEExamPaperDA(); NameValueCollection parameters = new NameValueCollection(); parameters.Add("FPaperStatus", "0"); int result = da.Update(parameters, where); if (result > 0) { ErrInfo = new ErrorEntity(RespCode.Success); } else { ErrInfo = new ErrorEntity(RespCode.SysError); } return result; }
public List<OEExamPaper> Select(NameValueCollection where, NameValueCollection orderby, int pageIndex, int pageSize, out int totalCount) { OEExamPaperDA da = new OEExamPaperDA(); return da.Select(where, orderby, pageIndex, pageSize, out totalCount).DataTableToList<OEExamPaper>(); }
public List<OEExamPaper> Select(NameValueCollection where, NameValueCollection orderby) { OEExamPaperDA da = new OEExamPaperDA(); return da.Select(where, orderby).DataTableToList<OEExamPaper>(); }