Esempio n. 1
0
 void FriendBO_OnUpdateFriendHot(int userID, MaxLabs.bbsMax.Enums.HotType type, int friendUserID)
 {
     CreateInstruct(userID, InstructType.Friend_UpdateHot, ProxyConverter.GetFriendHotProxy(userID, type, friendUserID));
 }
Esempio n. 2
0
        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);
        }