import Ember from 'ember'; export default Ember.Route.extend({ 'currentOrder': Ember.inject.service(), model(){ return Ember.Object.create({ // in the template: (subclass of Ember.ArrayProxy) == :) 'invoices': this.get('store').findAll('invoice'), // in the template: [object Object] == :( 'currentOrders': this.get('currentOrder').current() }); } });