using DealerSelection.Api.Infrastructure.Mulesoft; using DealerSelection.Api.Models; namespace DealerSelection.Api.Interface; public interface IMulesoftApi { Task GetDealers(int buId, string buUnit, string strlat, string strLong); Task GetAndInsertDealerDetails(int buId, string dealerCode); Task InsertLSQData(MulesoftCustomerInfoDto customerInfo); }