@bizdoc/sap
v0.2.0
Published
Server side Nuget [package](https://www.nuget.org/packages/BizDoc.Infrastructure.SAP).
Readme
SAP for BizDoc
Server side Nuget package.
npm i @bizdoc/sapapp.module.ts:
@NgModule({
imports: [SapModule.forRoot(), ...]
})
export class AppModule {
}Utilize Service
Inject SapService.
export class MyForm implements OnInit {
items$: Observable<ItemInfo[]>;
constructor (private _sap: SapService) {}
ngOnInit() {
this.items$ = this._sap.items(...);
}
}Tags
<mat-hint [sap-card-info]="'C20000'"></mat-hint>