Qual é a diferença entre @Inject e @Injectable no Angular 2 typescript

Não entendo Quando usar o @Inject e quando usar o @Injectable?

  import {Component, Inject, provide} from '@angular/core';
    import {Hamburger} from '../services/hamburger'; 
    export class App {
       bunType: string;
       constructor(@Inject(Hamburger) h) {
         this.bunType = h.bun.type;
       }
     }

E..

  import {Injectable} from '@angular/core';
    import {Bun} from './bun';
    @Injectable()
    export class Hamburger {
      constructor(public bun: Bun) {
      }
    }

questionAnswers(2)

yourAnswerToTheQuestion