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.
 
 
 

20 lines
926 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<MulesoftResponse> GetStateWisePrice(int buId, string stateCode, string itemId);
Task<MulesoftResponse> GetModelOnBrand(int buId, string brand);
Task<Response> CallLSQBookingApi( MulesoftCustomerInfoDto customerInfo);
Task<MulesoftCustomerInfoDto> GetCustomerInfo(int buId, string bookingId);
Task<List<MulesoftCustomerInfoDto>> GetDataForLsqPush (int buId);
Task<MulesoftResponse> GetActiveState(int buId);
Task<MulesoftResponse> GetActiveCity(int buId, string stateCode);
Task<MulesoftResponse> ModelDetailsByItemCode(int buId, string itemId);
}