private static SlotViewModel CreateSlotViewModel(TimeSlot a)
 {
     return(new SlotViewModel
     {
         Start = a.StartHour().ToDisplayHour(),
         End = a.EndHour().ToDisplayHour()
     });
 }