コード例 #1
0
        public IEnumerable <PvSassmTypes> GetAllPvSassmTypesList(GetAllPvSassmTypesListRequestApi criteria)
        {
            var where = new StringBuilder();
            var typeCode = "";

            if (!string.IsNullOrEmpty(criteria.typeCode))
            {
                typeCode = criteria.typeCode;
            }

            where.AppendFormatWithEscape("pv_sassm_types.type_code > '{0}'", typeCode);

            return(this.pvSassmTypesRepository.GetList(where.ToString(), criteria.batchsize, criteria.fldlist));
        }
コード例 #2
0
 public IEnumerable <PvSassmTypes> GetAllPvSassmTypesList(GetAllPvSassmTypesListRequestApi criteria)
 {
     return(this.pvSassmTypesService.GetAllPvSassmTypesList(criteria));
 }