예제 #1
0
        protected IActionResult ResponseWithFirstNotification()
        {
            if (_domainNotification.HasNotifications())
            {
                return(BadRequest(_domainNotification.GetFirstNotification()));
            }

            return(Ok());
        }