deleteType method
Removes holidayType from the active holiday types and from all holiday types list
Implementation
@override
void deleteType(HolidayType holidayType) {
final foundHolidayType = getType(holidayType.getHolidayType());
_holidaysTypes.remove(foundHolidayType);
_activeHolidayTypes.remove(foundHolidayType);
}