I would like to receive a list sorted by \'Product.Name\' in descending order.
Similar to the function below which sorts the list
list = new List(); sortedList = list.OrderByDescending(ProcedureTime=> ProcedureTime.EndTime).ToList();
Which works for me to show the time sorted in descending order.