using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Threading.Tasks; using System.Windows; using Comal.Classes; using InABox.Core; using InABox.Integration.Logikal; using PRSDesktop.Integrations.Logikal; namespace PRSDesktop.Integrations.Common; public partial class IntegrationBOMWindow : Window { public IntegrationBOMWindow(ILogikalPartsResponse bom) { InitializeComponent(); ViewModel.BOM = bom; } private void CancelClick(object sender, RoutedEventArgs e) { DialogResult = false; } private void OKClick(object sender, RoutedEventArgs e) { DialogResult = true; } }