C# Class Todo.SPA.Controllers.TodoListController

Inheritance: ApiController
ファイルを表示 Open project: jayway/knockout-intro-lab

Public Methods

Method Description
DeleteTodoList ( int id ) : HttpResponseMessage
GetTodoList ( int id ) : TodoListDto
GetTodoLists ( ) : IEnumerable
PostTodoList ( TodoListDto todoListDto ) : HttpResponseMessage
PutTodoList ( int id, TodoListDto todoListDto ) : HttpResponseMessage

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

DeleteTodoList() public method

public DeleteTodoList ( int id ) : HttpResponseMessage
id int
return System.Net.Http.HttpResponseMessage

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

GetTodoList() public method

public GetTodoList ( int id ) : TodoListDto
id int
return Todo.SPA.Models.TodoListDto

GetTodoLists() public method

public GetTodoLists ( ) : IEnumerable
return IEnumerable

PostTodoList() public method

public PostTodoList ( TodoListDto todoListDto ) : HttpResponseMessage
todoListDto Todo.SPA.Models.TodoListDto
return System.Net.Http.HttpResponseMessage

PutTodoList() public method

public PutTodoList ( int id, TodoListDto todoListDto ) : HttpResponseMessage
id int
todoListDto Todo.SPA.Models.TodoListDto
return System.Net.Http.HttpResponseMessage