示例#1
0
 public static long countPost(string Atid, int type)
 {
     return(FollowPostDAL.countPost(Atid, type));
 }
示例#2
0
 public static FollowPostBO getFollowPostByFollowPostId(string FollowPostId)
 {
     return(FollowPostDAL.getFollowPostByFollowPostId(FollowPostId));
 }
示例#3
0
 public static List <FollowPost> getFollowPostTop(int Type, string AtId)
 {
     return(FollowPostDAL.getFollowPostTop(Type, AtId));
 }
示例#4
0
 public static bool youFollowPost(FollowPostBO objClass)
 {
     return(FollowPostDAL.youFollowPost(objClass));
 }
示例#5
0
 public static List <FollowPost> getAllFollowPostList()
 {
     return(FollowPostDAL.getAllFollowPostList());
 }
示例#6
0
 public static void unFollowPost(FollowPostBO objClass)
 {
     FollowPostDAL.unFollowPost(objClass);
 }
示例#7
0
 public static void updateFollowPost(FollowPostBO objFollowPost)
 {
     FollowPostDAL.updateFollowPost(objFollowPost);
 }
示例#8
0
 public static void delUnFollowPost(string FollowPostId, string UserId)
 {
     FollowPostDAL.delUnFollowPost(FollowPostId, UserId);
 }
示例#9
0
 public static void deleteFollowPost(string FollowPostId)
 {
     FollowPostDAL.deleteFollowPost(FollowPostId);
 }
示例#10
0
 public static void insertFollowPost(FollowPostBO objFollowPost)
 {
     FollowPostDAL.insertFollowPost(objFollowPost);
 }