/// <summary> /// Method to add calendar event /// </summary> /// <param name="calEvent">calEvent</param> public bool AddCalendarEvent(CalendarEventInfo calEvent) { try { return(calDal.AddCalendarEvent(calEvent)); } catch { throw; } }