public IEnumerable <ToDoItem> Get() { return(_todoService.All()); }
public PartialViewResult All() { return(PartialView(_todoService.All())); }