public PageObject(string n, PageTemplate.PageDataCommon obj, PageObjState state, int order = 999) { this.name = n; this.page = obj; this.state = state; outputOrder = order; }
public PageObject(string n, PageTemplate.PageDataCommon obj, int order = 999) { this.name = n; this.page = obj; this.state = PageObjState.ExecuteAndSaveToDisk; outputOrder = order; }