Exemplo n.º 1
0
        public ActionResult Add(CreateNewNote command)
        {
            var service = new MyNotesCommandServiceClient();
            service.CreateNewNote(command);

            // Return user back to the index that
            // displays all the notes.));
            return RedirectToAction("Index");
        }
Exemplo n.º 2
0
        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");
        }
Exemplo n.º 3
0
        public ActionResult Add(CreateNewNote command)
        {
            var service = new MyNotesCommandServiceClient();

            service.CreateNewNote(command);

            // Return user back to the index that
            // displays all the notes.));
            return(RedirectToAction("Index"));
        }
Exemplo n.º 4
0
        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"));
        }
Exemplo n.º 5
0
        public ActionResult Add(CreateNewNote command)
        {
            Guid summaryId;

            using (var context = new ReadModelContainer())
            {
                var query = from item in context.TotalsPerDayItemSet
                            where item.Date == System.DateTime.Now.Date
                            orderby item.Date descending
                            select item.SummaryId;

                Guid.TryParse(query.ToString(), out summaryId);
            }
            command.SummaryId = summaryId;
            var service = new MyNotesCommandServiceClient();

            service.CreateNewNote(command);

            // Return user back to the index that
            // displays all the notes.));
            return(RedirectToAction("Index"));
        }