Blog.Services.Implementation.AddressService.GetByUser C# (CSharp) Method

GetByUser() public method

public GetByUser ( int userId ) : Address
userId int
return Blog.Common.Contracts.Address
        public Address GetByUser(int userId)
        {
            return _addressLogic.GetByUser(userId);
        }