public IEnumerable <Poeral> GetPoeralByReportNoLineNoSeqNo( GetPoeralByReportNoLineNoSeqNoRequestApi getPoeralByReportNoLineNoSeqNoRequestApi) { var where = new StringBuilder(); where.AppendFormat("poeral.cono = {0}", this.poeralRepository.Cono); where.AppendFormat(" and poeral.reportno = {0}", getPoeralByReportNoLineNoSeqNoRequestApi.reportno); where.AppendFormat(" and poeral.lineno = {0}", getPoeralByReportNoLineNoSeqNoRequestApi.lineno); where.AppendFormat(" and poeral.seqno = {0}", getPoeralByReportNoLineNoSeqNoRequestApi.seqno); return(this.poeralRepository.GetList( where.ToString(), getPoeralByReportNoLineNoSeqNoRequestApi.batchsize, getPoeralByReportNoLineNoSeqNoRequestApi.fldlist)); }
public IEnumerable <Poeral> GetPoeralByReportNoLineNoSeqNo(GetPoeralByReportNoLineNoSeqNoRequestApi getPoeralByReportNoLineNoSeqNoRequestApi) { return(this.poeralService.GetPoeralByReportNoLineNoSeqNo(getPoeralByReportNoLineNoSeqNoRequestApi)); }