public static string UpdateMeetingEvents(ATTMeeting objMeeting) { try { return(DLLMeeting.UpdateMeetingEvents(objMeeting)); } catch (Exception ex) { throw ex; } }
public static DataTable GetMeetingEventListTable(string dateString, ATTUserLogin login) { try { return(DLLMeeting.GetMeetingEventListTable(dateString, login)); } catch (Exception ex) { throw (ex); } }
public static bool DeleteMeetingEvent(ATTMeeting objMeeting) { try { DLLMeeting.DeleteMeetingEvents(objMeeting); return(true); } catch (Exception ex) { throw (ex); } }