public static bool insertFriend(String userId, String friendId) { MainDAO.insertFriend(userId, friendId); return(true); }
public static List <FriendData> getAllFriend(string userID) { return(MainDAO.getAllFriend(userID)); }