C# Class TasksApp.Controllers.Api.Version1.TasksController

Inheritance: ApiController
Mostra file Open project: colinbowern/Presentations

Public Methods

Method Description
Get ( ) : IEnumerable

Retrieves all the tasks

Get ( int id ) : Task

Gets task with the specified id.

Method Details

Get() public method

Retrieves all the tasks
public Get ( ) : IEnumerable
return IEnumerable

Get() public method

Gets task with the specified id.
public Get ( int id ) : Task
id int The id.
return TasksApp.Models.Task