// Initialization Of Report Page. // List all of the available installations for the Program, Truck, and Engineer // Based on Installation selection, display specific installation data. public CADImageViewerReportWindow(UserInputItem Item) { userInputItem = Item; DataBase = new DatabaseHandler(); DocumentStore = new DocumentStore(DataBase); InitializeComponent(); }
public PrintHandler(UserInputItem userInput, string[] installations) { PrintDialog = new PrintDialog(); UserInputItem = userInput; Installations = installations; TemporaryPreviewPath = returnPrintableTempName(); }