private static void RemoveLocationWorkHour(LocationWorkHourDto dto, LocationOperationSchedule operationSchedule, LocationWorkHour workHour)
 {
     operationSchedule.RemoveWorkHour(workHour);
 }
 private static void ChangeLocationWorkHour(LocationWorkHourDto dto, LocationOperationSchedule operationSchedule, LocationWorkHour workHour)
 {
     RemoveLocationWorkHour(dto, operationSchedule, workHour);
     AddLocationWorkHour(dto, operationSchedule);
 }