Esempio n. 1
0
        public void HandleDelete(RegrasForunsBairros message)
        {
            var result = _repository.RemoverRegraBairro(message);

            if (!result.Success)
            {
                _notifications.AddNotification(new DomainNotification(message.MessageType, result.Message));
            }
            else
            {
                _notifications.AddNotification(new DomainNotification(message.MessageType, "Regra Removida com Sucesso"));
            }
        }