Blog.Logic.Core.UsersLogic.Get C# (CSharp) Method

Get() public method

public Get ( int userId ) : User
userId int
return User
        public User Get(int userId)
        {
            try
            {
                return GetUser(userId, string.Empty);
            }
            catch (Exception ex)
            {
                throw new BlogException(ex.Message, ex.InnerException);
            }
        }