Beispiel #1
0
 /// <summary>
 /// 检查该用户的当天主题数量是否达到了上限
 /// </summary>
 /// <param name="customerSysNo">Customer SysNo</param>
 /// <returns></returns>
 public static bool IsTopicCountLimitToday(int customerSysNo)
 {
     return(TopicDac.ReturnNumOfTopicByCustomerId(customerSysNo) >= AppConfig.Topic.PostTopic_Everyday_CountLimit);
 }