예제 #1
0
        public bool IsIsraeliDaylightSavingsTime(CalendarDate hebrewDate)
        {
            CalendarEngine     engine  = new CalendarEngine();
            HolidayCalculation holCalc = new HolidayCalculation();

            return(holCalc.IsIsraeliDaylightSavingsTime(hebrewDate, engine));
        }
예제 #2
0
        public List <string> GetJewishHolidaysForHebrewDate(CalendarDate gdate, bool diaspora)
        {
            CalendarEngine     engine  = new CalendarEngine();
            HolidayCalculation holCalc = new HolidayCalculation();

            return(holCalc.GetHolidayForDate(gdate, engine, diaspora));
        }
예제 #3
0
        public int GetWeekdayOfHebrewDate(int hebDay, int hebMonth, int hebYear)
        {
            CalendarEngine     engine  = new CalendarEngine();
            HolidayCalculation holCalc = new HolidayCalculation();

            return(holCalc.GetWeekdayOfHebrewDate(hebDay, hebMonth, hebYear, engine));
        }