public static List<ef.uspGetMyAccountAppointment_Result> GetMyAppintmentData(int currentPageIndex, short pageSize, bool isPastApp, long userID, byte? LoadServiceClass = null, long? businessID = 0, string sPagingDetails = "")
{
bool IsCallFromCheckIn = Functions.IsCallFromCheckIn();
string resultAppointments1 = Vagaro.Web.Business.CommonRepository.GetDataFromSQLGroups(new clsGroupCallInput()
pageIndex = currentPageIndex,
pageSize = pageSize,
isPastApp = isPastApp,
userID = userID,
LoadServiceClass = LoadServiceClass,
businessID = businessID,
sPagingDetails = sPagingDetails,
IsCallFromCheckIn = IsCallFromCheckIn
}, clsGroupCallType.MyAccount_Appointment);
return JsonConvert.DeserializeObject<List<ef.uspGetMyAccountAppointment_Result>>(resultAppointments1);
}