示例#1
0
 public void ActionSend(ActionSendType actionSendType, string tableOfResults)
 {
     try
     {
         switch (actionSendType)
         {
         case ActionSendType.SummaryTechnicalSending:
             TechnicalSending(tableOfResults);
             break;
         }
     }
     catch (Exception ex)
     {
         throw new RMSWebException(this, "0500", "ActionSend failed. " + ex.Message, ex, false);
     }
 }
示例#2
0
 public void ActionSend(ActionSendType actionSendType, List <RmsReportSummaryMonitoring> lRmsReportSummaryMonitorings, List <RmsReportSummaryMonitoring> lSolvedMonitorings = null, List <RMSAttachment> lAttachments = null)
 {
     try
     {
         switch (actionSendType)
         {
         case ActionSendType.ManualSending:
             ManualSending(lRmsReportSummaryMonitorings, lSolvedMonitorings, lAttachments);
             break;
         }
     }
     catch (Exception ex)
     {
         throw new RMSWebException(this, "0500", "ActionSend failed. " + ex.Message, ex, false);
     }
 }