Exemple #1
0
        public List <TeaCertificate> GetAll(FilterEntityModel filterModel = null)
        {
            if (filterModel != null)
            {
                filterModel.FillWhereTbAsName(Constant.TEA_CERTIFICATE_AS_NAME);                     //筛选器添加表别名
            }
            List <TeaCertificate> teaCertificateList = _certificateProvider.GetTeaAll(filterModel);

            return(teaCertificateList);
        }