@Injectable() export class TodosService { addTodo( title ) { return Observable.timer(2000) .mapTo({id: Math.random(), title, completed: false}) } }