blob: 1791021325f9f8b6333cef4dec0ab8a22074f21d [file] [log] [blame]
export class XosVtrTruckroll {
static $inject = [
'$resource',
'AppConfig'
];
constructor(
private $resource: ng.resource.IResourceService,
private AppConfig: any
) {
}
public getResource() {
return this.$resource(`${this.AppConfig.apiEndpoint}/vtr/vtrtenants/:id/`, { id: '@id' }, {
update: { method: 'PUT' }
});
}
}