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.
13 lines
582 B
13 lines
582 B
using DealerSelection.Api.Infrastructure.Mulesoft;
|
|
using DealerSelection.Api.Models;
|
|
|
|
namespace DealerSelection.Api.Infrastructure.CustomerDetail;
|
|
|
|
public interface IRepository
|
|
{
|
|
Task<int> UpdateDealerDetail(CustomerDealerInfoRequestDto customerInfo);
|
|
// Task<MulesoftCustomerInfoDto> GetCustomerData();
|
|
Task<MulesoftCustomerInfoDto> GetCustomerData(int buid, int recordId);
|
|
Task<bool> IsDuplicateMobileNumber(int mobileNumber);
|
|
Task UpdateDealerSelectionJobStatus(int buId, int recordId, int mobileNumber, DealerSelectionJobStatus dealerSelectionJobStatus);
|
|
}
|