Esempio n. 1
0
        public async Task <bool> Commit()
        {
            if (_notifications.HasNotificationsWithKey("Error"))
            {
                return(false);
            }

            if ((await _unityOfWork.SaveAndCommitAsync()) > 0)
            {
                return(true);
            }

            _notifications.Handle(new DomainNotification("Error", "We had a problem during saving your data."));
            return(false);
        }