C# Class BinaryStudio.TaskManager.Web.Controllers.ReminderController

Inheritance: Controller
Show file Open project: dv00d00/BinaryStudio.TaskManager Class Usage Examples

Public Methods

Method Description
Create ( ) : System.Web.Mvc.ActionResult
Delete ( int id ) : System.Web.Mvc.ActionResult
Details ( int id ) : System.Web.Mvc.ViewResult
Edit ( int id ) : System.Web.Mvc.ActionResult
ReminderController ( IReminderRepository reminderRepository, IUserRepository userRepository, ITaskProcessor taskProcessor, IReminderProcessor reminderProcessor ) : System

Initializes a new instance of the ReminderController class.

Private Methods

Method Description
Create ( Reminder reminder ) : System.Web.Mvc.ActionResult
DeleteConfirmed ( int id ) : System.Web.Mvc.ActionResult
Edit ( Reminder reminder ) : System.Web.Mvc.ActionResult
GetUsers ( string name, string applicationKey ) : System.Web.Mvc.JsonResult
IsUserHasReminders ( ) : System.Web.Mvc.ActionResult
MyReminders ( ) : System.Web.Mvc.ViewResult
SendNotification ( int userId, string content, System.DateTime date ) : System.Web.Mvc.JsonResult

Method Details

Create() public method

public Create ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult

Delete() public method

public Delete ( int id ) : System.Web.Mvc.ActionResult
id int
return System.Web.Mvc.ActionResult

Details() public method

public Details ( int id ) : System.Web.Mvc.ViewResult
id int
return System.Web.Mvc.ViewResult

Edit() public method

public Edit ( int id ) : System.Web.Mvc.ActionResult
id int
return System.Web.Mvc.ActionResult

ReminderController() public method

Initializes a new instance of the ReminderController class.
public ReminderController ( IReminderRepository reminderRepository, IUserRepository userRepository, ITaskProcessor taskProcessor, IReminderProcessor reminderProcessor ) : System
reminderRepository IReminderRepository /// The reminder repository. ///
userRepository IUserRepository /// The user repository. ///
taskProcessor ITaskProcessor /// The task processor. ///
reminderProcessor IReminderProcessor
return System