| import { FormSOP } from '../../../libappsop/formsop'; | 
| import { ListSOP } from '../../../libappsop/listsop'; | 
| import { DialogDummy } from '../../dialogs/dialog.dummy'; | 
| import { PanelResourceCalendarGanttChart, PanelResourceCalendarList } from './'; | 
|   | 
| export class FormResourceCalendars extends FormSOP { | 
|   public static readonly title = 'Resource Calendars'; | 
|   public listCalendars = new ListResourceCalendars(); | 
|   public pnlResourceCalendarList = new PanelResourceCalendarList(); | 
|   public pnlResourceCalendarGanttChart = new PanelResourceCalendarGanttChart(); | 
|   | 
|   public constructor() { | 
|     super('FormResourceCalendars'); | 
|   } | 
| } | 
|   | 
| export class ListResourceCalendars extends ListSOP<DialogDummy, ListResourceCalendarsColumn> { | 
|   public static readonly title = 'Calendars'; | 
|   | 
|   public constructor() { | 
|     super('lstResourceCalendars', new DialogDummy()); | 
|   } | 
| } | 
|   | 
| export interface ListResourceCalendarsColumn { | 
|   CalendarID?: string; | 
| } |