Exemple #1
0
        public bool ClearAlarmgroups()
        {
            try
            {
                _business.DeleteAlarmappAll();

                Logger.WriteDebug(MethodBase.GetCurrentMethod(), "Clear -> OK");
                return(true);
            }
            catch (Exception ex)
            {
                ExceptionOccured.RaiseEvent(this, new ExceptionEventArgs
                {
                    Methode = MethodBase.GetCurrentMethod(),
                    Error   = ex
                });
                return(false);
            }
        }