projects/wms-framework/src/lib/regionsframework/services/modelaccessor.service.ts
Service for allowing access to the component model
Properties |
constructor()
|
model |
Type : any
|
Default value : null
|
import { Injectable } from '@angular/core';
/**
* Service for allowing access to the component model
*
* @export
* @class ModelProviderService
*/
@Injectable()
export class ModelProviderService {
model: any = null;
constructor() {}
}