updateNotes(number: string, notes: string): Bluebird<Fragment> {
    return this.fragmentRepository
      .updateNotes(number, notes)
      .then((fragment: Fragment) => this.injectReferences(fragment))
  }