import { DialogSOP } from '../../libappsop/dialogsop'; 
 | 
import { EditFieldSOP } from '../../libappsop/editfieldsop'; 
 | 
import { DropDownStringListSOP } from '../../libappsop/dropdownstringlistsop'; 
 | 
  
 | 
export interface DialogAssumptionFields { 
 | 
  Title?: string; 
 | 
  Description?: string; 
 | 
  Type?: string; 
 | 
  Category?: string; 
 | 
  Importance?: string; 
 | 
} 
 | 
  
 | 
export class DialogAssumption extends DialogSOP<DialogAssumptionFields> { 
 | 
  public efTitle = new EditFieldSOP('edtTitle'); 
 | 
  public efDescription = new EditFieldSOP('edtDescription'); 
 | 
  public ddslType = new DropDownStringListSOP('DropDownStringListType'); 
 | 
  public efCategory = new EditFieldSOP('edtCategory'); 
 | 
  public ddslImportance = new DropDownStringListSOP('DropDownStringListImportance'); 
 | 
  
 | 
  public constructor() { 
 | 
    super('DialogCreateEditAssumption', 'btnOK'); 
 | 
  
 | 
    // Set UI element mapping to pair the UI name to the UI element for use in DialogSOP to find the UI object to set value or verify value 
 | 
    // This prevents each new Dialog to duplicate code just to set/verify UI element value 
 | 
    this._uiMap.set('Title', this.efTitle); 
 | 
    this._uiMap.set('Description', this.efDescription); 
 | 
    this._uiMap.set('Type', this.ddslType); 
 | 
    this._uiMap.set('Category', this.efCategory); 
 | 
    this._uiMap.set('Importance', this.ddslImportance); 
 | 
  } 
 | 
} 
 |