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.
12 lines
406 B
12 lines
406 B
using DealerSelection.Api.Infrastructure.Mulesoft;
|
|
using DealerSelection.Api.Models;
|
|
|
|
namespace DealerSelection.Api.Interface;
|
|
|
|
public interface IMulesoftApi
|
|
{
|
|
Task<MulesoftResponse> GetDealers(int buId, string buUnit, string strlat, string strLong);
|
|
Task<MulesoftResponse> GetAndInsertDealerDetails(int buId, string dealerCode);
|
|
|
|
Task InsertLSQData(MulesoftCustomerInfoDto customerInfo);
|
|
}
|