Blog.Services.Implementation.AddressService.GetByUser C# (CSharp) 메소드

GetByUser() 공개 메소드

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