module App { "use strict"; export class CustomerController extends BaseController { static $inject: string[] = [ "$location", "$state", "$stateParams", "UrlService", "SearchService", "SaveService", "AuthService" ]; constructor( location: angular.ILocationService, state: angular.ui.IStateService, stateParams: angular.ui.IStateParamsService, url: UrlService, search: SearchService, save: SaveService, authService: AuthService ) { super(location, state, stateParams, url, search, save, authService, url.Customer, url.CustomerQuery); } } angular.module("app").controller("CustomersController", CustomerController); }