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