/**
* The core service that directs all of the other stuff
*/
export class CoreService {
constructor() {
}
public start()
{
// window['sortableController'] = new SortableController()
}
public alive()
{
console.log('Yes...i am alive father');
}
}