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