public bool IsIsraeliDaylightSavingsTime(CalendarDate hebrewDate) { CalendarEngine engine = new CalendarEngine(); HolidayCalculation holCalc = new HolidayCalculation(); return(holCalc.IsIsraeliDaylightSavingsTime(hebrewDate, engine)); }
public List <string> GetJewishHolidaysForHebrewDate(CalendarDate gdate, bool diaspora) { CalendarEngine engine = new CalendarEngine(); HolidayCalculation holCalc = new HolidayCalculation(); return(holCalc.GetHolidayForDate(gdate, engine, diaspora)); }
public int GetWeekdayOfHebrewDate(int hebDay, int hebMonth, int hebYear) { CalendarEngine engine = new CalendarEngine(); HolidayCalculation holCalc = new HolidayCalculation(); return(holCalc.GetWeekdayOfHebrewDate(hebDay, hebMonth, hebYear, engine)); }