コード例 #1
0
 /// <summary>
 /// 删除搜索词
 /// </summary>
 /// <param name="id">搜索词Id</param>
 public void Delete(long id)
 {
     searchedTermRepository.DeleteByEntityId(id);
     CountService countService = new CountService(TenantTypeIds.Instance().Search());
     countService.Delete(id);
 }