BinaryStudio.TaskManager.Web.Controllers.ReminderController.Create C# (CSharp) 메소드

Create() 공개 메소드

public Create ( ) : System.Web.Mvc.ActionResult
리턴 System.Web.Mvc.ActionResult
        public ActionResult Create()
        {
            ViewBag.PossibleTasks = this.taskProcessor.GetTasksList(userRepository.GetByName(User.Identity.Name).Id);
            var reminder = new Reminder();
            reminder.ReminderDate = DateTime.Now;
            return this.View(reminder);
        }
        

Same methods

ReminderController::Create ( Reminder reminder ) : System.Web.Mvc.ActionResult