Blog.Logic.Core.ChatMessagesLogic.GetChatMessagesListByUser C# (CSharp) Method

GetChatMessagesListByUser() public method

public GetChatMessagesListByUser ( int userId ) : ChatMessagesList
userId int
return Blog.Common.Contracts.ViewModels.ChatMessagesList
        public ChatMessagesList GetChatMessagesListByUser(int userId)
        {
            try
            {
                return GetChatMessagesList(userId);
            }
            catch (Exception ex)
            {
                throw new BlogException(ex.Message, ex.InnerException);
            }
        }

Same methods

ChatMessagesLogic::GetChatMessagesListByUser ( string username ) : ChatMessagesList