@bizdoc/priority
v3.2.1
Published
Server side Nuget [package](https://www.nuget.org/packages/BizDoc.Infrastructure.Priority).
Readme
Priority for BizDoc
Server side Nuget package.
npm i @bizdoc/priorityapp.module.ts:
@NgModule({
imports: [PriorityModule.forRoot(), ...]
})
export class AppModule {
}API
Inject PriorityService.
export class MyForm implements OnInit {
parts$: Observable<PartInfo[]>;
constructor (private _priority: PriorityService) {}
ngOnInit() {
this.parts$ = this._priority.parts(...);
}
}| Name | Method | Usage | -- | -- | -- | /api/priority/suppliers | GET take, value | /api/priority/suppliers/{id} | GET | /api/priority/purchaseorders/{id} | GET | /api/priority/parts | GET take, company, value | /api/priority/parts/{id} | GET | /api/priority/budgets | GET take, value | /api/priority/accounts | GET take, value
