Exemple #1
0
 string INovaAlertService.GetParameterValue(eGlobalParameter name)
 {
     try
     {
         if (CheckConnection() == false)
         {
             throw new ServiceException();
         }
         return(_realProxy.GetParameterValue(name));
     }
     catch (Exception ex)
     {
         OnException(ex);
         throw new ServiceException();
     }
 }
 string INovaAlertConfigService.GetParameterValue(eGlobalParameter name)
 {
     return(GlobalSetting.Instance.GetParamByName(name.ToString()));
 }