Спасибо за оперативный ответ! 
Большая просьба подскажи, как заменить эти строки кода:
DocumentService.prototype.addDocument = function (document, max_id, today) {
   var body = { id: max_id, name: document.name, text: today, autor: document.autor };
   return this.http.post("http://localhost:3000/documents", body);
};
и
DocumentService.prototype.deleteDocument = function (document) {
   var body = { id: document.id, name: document.name, text: document.text, autor: document.autor };
   return this.http.delete("http://localhost:3000/documents/" + document.id);
};
Пробовал в первом случае вставить код:
return this.http.post("file.json").map(response => response['documents']).subscribe(data => this.body=data);
Но не отрабатывает. 
Мучался полдня. Я в Angular 4 новичок. 
Буду очень признателен за помощь.