コード例 #1
0
ファイル: BasicCommands.cs プロジェクト: trailmax/CQRS.Talk
 public void Handle(UpdateDelegateCommand command)
 {
     var sessionDelegate = delegateRepository.Find(command.SessionDelegateId);
     sessionDelegate.Update(command);
     delegateRepository.Update(sessionDelegate);
     delegateRepository.Save();
 }
コード例 #2
0
        public void Handle(UpdateDelegateCommand command)
        {
            var sessionDelegate = delegateRepository.Find(command.SessionDelegateId);

            sessionDelegate.Update(command);
            delegateRepository.Update(sessionDelegate);
            delegateRepository.Save();
        }
コード例 #3
0
        public ActionResult CancelSessionDelegateFromSession(UpdateDelegateCommand command)
        {
            var errors = mediator.ProcessCommand(command);

            if (errors.Any())
            {
                //diplay errors to the user
                return(View(errors));
            }

            return(RedirectToAction("Index", "Session"));
        }
コード例 #4
0
ファイル: 2.Consumer.cs プロジェクト: trailmax/CQRS.Talk
        public ActionResult CancelSessionDelegateFromSession(UpdateDelegateCommand command)
        {
            var errors = mediator.ProcessCommand(command);

            if (errors.Any())
            {
                //diplay errors to the user
                return View(errors);
            }

            return RedirectToAction("Index", "Session");
        }
コード例 #5
0
ファイル: 2.Consumer.cs プロジェクト: trailmax/CQRS.Talk
        public ActionResult CancelSessionDelegateFromSession(UpdateDelegateCommand command)
        {
            var errors = updateValidator.GetErrorList(command);

            if (errors.Any())
            {
                //diplay errors to the user
                return View(errors);
            }

            updateHandler.Handle(command);

            return RedirectToAction("Index", "Session");
        }
コード例 #6
0
ファイル: 2.Consumer.cs プロジェクト: trailmax/CQRS.Talk
        public ActionResult CancelSessionDelegateFromSession(UpdateDelegateCommand command)
        {
            var errors = updateValidator.GetErrorList(command);

            if (errors.Any())
            {
                //diplay errors to the user
                return(View(errors));
            }

            updateHandler.Handle(command);

            return(RedirectToAction("Index", "Session"));
        }
コード例 #7
0
ファイル: 0.Dependencies.cs プロジェクト: trailmax/CQRS.Talk
 public void Update(UpdateDelegateCommand delegateData)
 {
     throw new NotImplementedException();
 }
コード例 #8
0
ファイル: 3.Consumer.cs プロジェクト: trailmax/CQRS.Talk
        public ActionResult CancelSessionDelegateFromSession(UpdateDelegateCommand command)
        {
            updateHandler.Handle(command);

            return RedirectToAction("Index", "Session");
        }
コード例 #9
0
ファイル: 0.Dependencies.cs プロジェクト: trailmax/CQRS.Talk
 public void Update(UpdateDelegateCommand delegateData)
 {
     throw new NotImplementedException();
 }