public IList <Domain.Entitys.TBTestDataEntity> FindByPosId(Guid posId)
        {
            ITBTestDataDao dataDao = this.Dao as ITBTestDataDao;

            return(dataDao.QueryByPosId(posId));
        }
        public IList <Domain.Entitys.TBTestDataEntity> FindForPager(Domain.Common.Pager pager)
        {
            ITBTestDataDao dataDao = this.Dao as ITBTestDataDao;

            return(dataDao.QueryForPager(pager));
        }