Example #1
0
 /// <summary>
 /// 获取我的访客记录(我去看过谁的内容)前topNumber条记录
 /// </summary>
 /// <param name="visitorId">访客用户Id</param>
 /// <param name="topNumber">条数</param>
 /// <returns>访客记录列表(我去看过谁的内容)</returns>
 public IEnumerable <Visit> GetTopMyVisits(long visitorId, int topNumber)
 {
     return(visitRepository.GetTopMyVisits(tenantTypeId, visitorId, topNumber));
 }