Пример #1
0
        public IEnumerable <Sassp> GetSasspListByAreaCode(
            GetSasspListByAreaCodeRequestApi getSasspListByAreaCodeRequestApi)
        {
            var sb = new StringBuilder();

            if (getSasspListByAreaCodeRequestApi.areacd != null)
            {
                sb.AppendFormatWithEscape("sassp.areacd = '{0}'", getSasspListByAreaCodeRequestApi.areacd);
            }
            var where = sb.ToString();
            return(this.sasspRepository.GetList(where, getSasspListByAreaCodeRequestApi.batchsize, getSasspListByAreaCodeRequestApi.fldlist));
        }
Пример #2
0
 public IEnumerable <Sassp> GetSasspListByAreaCode(GetSasspListByAreaCodeRequestApi getSasspListByAreaCodeRequestApi)
 {
     return(this.sasspService.GetSasspListByAreaCode(getSasspListByAreaCodeRequestApi));
 }