public DataTable GetUserFollower()
 {
     return(DalFollower.GetUserFollower());
 }
 public static bool Insert(DTOFollower obj)
 {
     return(DalFollower.Insert(obj));
 }
 public DataTable GetWallFollowCount(int AccountID1)
 {
     return(DalFollower.GetWallFollowCount(AccountID1));
 }
 public DataTable GetFollowerSendMessage(int AccountID1, int AccountID2)
 {
     return(DalFollower.GetFollowerSendMessage(AccountID1, AccountID2));
 }
 public DataTable GetTopUserFollowerWithLogin(int AccountID)
 {
     return(DalFollower.GetTopUserFollowerWithLogin(AccountID));
 }