void FriendBO_OnUpdateFriendHot(int userID, MaxLabs.bbsMax.Enums.HotType type, int friendUserID) { CreateInstruct(userID, InstructType.Friend_UpdateHot, ProxyConverter.GetFriendHotProxy(userID, type, friendUserID)); }
public static MaxLabs.Passport.Proxy.FriendHotProxy GetFriendHotProxy(int userID, MaxLabs.bbsMax.Enums.HotType type, int friendUserID) { MaxLabs.Passport.Proxy.FriendHotProxy friendHotProxy = new FriendHotProxy(); friendHotProxy.FriendID = friendUserID; friendHotProxy.UserID = userID; friendHotProxy.HotType = (int)type; return(friendHotProxy); }