Beispiel #1
0
 private void RegisterBankHoliday()
 {
     RegisterFixedFuncs(AllFixedHolidayFuncs.Where(f => f.HolidayType == HolidayType.Bank));
     RegisterVariableFuncs(AllVariableHolidayFuncs.Where(f => f.HolidayType == HolidayType.Bank));
 }
Beispiel #2
0
 private void RegisterPropagandaHoliday()
 {
     RegisterFixedFuncs(AllFixedHolidayFuncs.Where(f => f.HolidayType == HolidayType.Propaganda));
     RegisterVariableFuncs(AllVariableHolidayFuncs.Where(f => f.HolidayType == HolidayType.Propaganda));
 }
Beispiel #3
0
 private void RegisterReligionHoliday()
 {
     RegisterFixedFuncs(AllFixedHolidayFuncs.Where(f => f.HolidayType == HolidayType.Religion));
     RegisterVariableFuncs(AllVariableHolidayFuncs.Where(f => f.HolidayType == HolidayType.Religion));
 }