//*********************** Call  API for DeletingTeachers Data *****************************
  deleteTeachersF(id){
    return this.http.d('http://localhost:3000/delete-teacher/'+id)
      .map(response => response.json());

  }