| import { Form } from '../../e2elib/lib/src/pageobjects/form.component'; | 
| import { ListBase } from '../../libappbase/listbase'; | 
|   | 
| export class FormStockingAccount extends Form { | 
|   public lstStockingAccount = new ListStockingAccount(); | 
|   | 
|   public constructor() { | 
|     super('FormStockingAccounts'); | 
|   } | 
| } | 
|   | 
| export class ListStockingAccount extends ListBase { | 
|   public constructor() { | 
|     super('ListAccounts'); | 
|   } | 
| } | 
|   | 
| export enum ListColumnStockingAccount { | 
|   Account = 'Account', | 
|   DefaultValue = 'Default value', | 
|   DefaultUoM = 'Default UoM', | 
| } |