You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
642 B

  1. using CustomerOnlineV2.Api.API.TPApi;
  2. using CustomerOnlineV2.Common.Models.RegisterModel;
  3. using Microsoft.Extensions.Logging;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace CustomerOnlineV2.Business.Business.RegisterBusiness
  10. {
  11. public class RegisterBusiness : IRegisterBusiness
  12. {
  13. private readonly ILogger<RegisterBusiness> _logger;
  14. private readonly ITPApiService _tpApi;
  15. public Task<AddressListResponse> GetAddressList(AddressRequest addressRequest)
  16. {
  17. throw new NotImplementedException();
  18. }
  19. }
  20. }