using CustomerOnlineV2.Api.API.TPApi; using CustomerOnlineV2.Common.Models.RegisterModel; using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CustomerOnlineV2.Business.Business.RegisterBusiness { public class RegisterBusiness : IRegisterBusiness { private readonly ILogger _logger; private readonly ITPApiService _tpApi; public Task GetAddressList(AddressRequest addressRequest) { throw new NotImplementedException(); } } }