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.
15 lines
867 B
15 lines
867 B
|
|
namespace DealerSelection.Api.Infrastructure;
|
|
|
|
public class Procedure
|
|
{
|
|
public const string UpdateDealerDetails = "usp_update_dealer_details";
|
|
public const string GetCustomerBookingInfo = "usp_get_customer_booking_info";
|
|
public const string InsertUpdateDealerDetail = "usp_Insert_Update_Dealer_Details";
|
|
public const string InsertLSQDetail = "usp_insert_lsq_data";
|
|
public const string GetDataForLsqPush = "usp_get_data_for_lsq_push";
|
|
public const string GetCustomerInfoOnBookingId = "usp_get_customer_Info_on_BookingId";
|
|
public const string GetCustomerDataForJob = "usp_get_CustomerDataForJob"; //TO BE ADDED IN DB
|
|
public const string IsDuplicateMobileNumber = "usp_isDuplicateMobileNumber"; //TO BE ADDED IN DB
|
|
public const string UpdateDealerSelectionJobStatus = "usp_update_DealerSelectionJobStatus"; //TO BE ADDED IN DB
|
|
}
|