namespace DealerSelection.Api.Infrastructure.Mulesoft; public class DealerDetailDto { public int BuId { get; set; } public string DealerCode { get; set; } public string Address1 { get; set; } public string Address2 { get; set; } public string City { get; set; } public string State { get; set; } public string Zip { get; set; } public string DisplayName { get; set; } public string ContactCard { get; set; } public string SalesPersonMail { get; set; } public string SaleMobileNumber { get; set; } public string EcomSalesAddress { get; set; } public string RequestDetail() { return $"BuId: {BuId}, DealerCode: {DealerCode}, Address1: {Address1}, Address2: {Address2}, City: {City}, State: {State}, " + $"Zip: {Zip}, DisplayName: {DisplayName}, ContactCard: {ContactCard}, SalesPersonMail: {SalesPersonMail}, " + $"SaleMobileNumber: {SaleMobileNumber}, EcomSalesAddress: {EcomSalesAddress}."; } }