import {User} from 'backend/user'; // import custom class
import {inject} from 'aurelia-framework'; // allows us to inject
@inject(User) // inject custom class
export class ProfileView {
constructor(user) { // use instance of custom class as a parameter to the constructor
this.user = us...