public ActionResult Edit(ChangeNoteText command) { var service = new MyNotesCommandServiceClient(); service.ChangeNoteText(command); // Return user back to the index that // displays all the notes.)); return RedirectToAction("Index"); }
public ActionResult Edit(ChangeNoteText command) { ChannelHelper.Use(_channelFactory.CreateChannel(), (client) => client.Execute(new ExecuteRequest(command))); // Return user back to the index that // displays all the notes.)); return RedirectToAction("Index", "Note"); }
public ActionResult Edit(Guid id) { NoteItem item; using (var context = new ReadModelContainer()) { item = context.NoteItemSet.Single(note => note.Id == id) ; } var command = new ChangeNoteText(); command.NoteId = id; command.NewText = item.Text; return View(command); }
public void ChangeNoteText(ChangeNoteText command) { _service.Execute(command); }