CQRS_ES.Controllers.HomeController.Index C# (CSharp) Метод

Index() приватный Метод

private Index ( RegisterAccountCommand registerAccountCommand ) : System.Web.Mvc.ActionResult
registerAccountCommand CQRS_ES.Models.RegisterAccountCommand
Результат System.Web.Mvc.ActionResult
        public ActionResult Index(RegisterAccountCommand registerAccountCommand)
        {
            Configuration.Instance.Bus.Handle(new RegisterAccountCommand
            {
                AccountId = Guid.NewGuid(),
                Balance = 100,
                Name = "Sebastian Kent"
            });

            return View(Configuration.Instance.Accounts);
        }

Same methods

HomeController::Index ( ) : System.Web.Mvc.ActionResult
HomeController