public PurchasingUpdate() { InitializeComponent(); EmployeeSelectionComboBox.ItemsSource = employeeBL.GetAll(); EmployeeSelectionComboBox.DisplayMemberPath = "full_Name"; purchasingUpdateComboBox.ItemsSource = purchasingFromSupplierBL.GetAll(); purchasingUpdateComboBox.DisplayMemberPath = "Id"; }
public UpdatePurchaseOfCostumer() { InitializeComponent(); EmployeeSelectionComboBox.ItemsSource = employeeBL.GetAll(); EmployeeSelectionComboBox.DisplayMemberPath = "full_Name"; purchasingUpdateComboBox.ItemsSource = purchasingCostumerBL.GetAll(); purchasingUpdateComboBox.DisplayMemberPath = "Id"; }
public UpdateCurrentExpend() { InitializeComponent(); selectionCurrentExpendComboBox.ItemsSource = Expends.GetAllCurentExp(); selectionCurrentExpendComboBox.DisplayMemberPath = "Id"; employeeSlelctionComboBox.ItemsSource = employeeBL.GetAll(); employeeSlelctionComboBox.DisplayMemberPath = "full_Name"; }
public purchaseFromSupllier(List <orderFromSupplierDetailTable> Idlist, ContinueOrderingMessage com) { InitializeComponent(); this.Idlist = Idlist; this.com = com; EmployeeSelectionComboBox.ItemsSource = employeeBL.GetAll(); EmployeeSelectionComboBox.DisplayMemberPath = "full_Name"; OrderIdSelectionComboBox.ItemsSource = Idlist; OrderIdSelectionComboBox.DisplayMemberPath = "Id"; }
public PurchaseCostumer(List <orderDetailsTable> Idlist, ContinueOrderCostumer coc) { InitializeComponent(); this.Idlist = Idlist; this.coc = coc; EmployeeSelectionComboBox.ItemsSource = employeeBL.GetAll(); EmployeeSelectionComboBox.DisplayMemberPath = "full_Name"; OrderIdSelectionComboBox.ItemsSource = Idlist; OrderIdSelectionComboBox.DisplayMemberPath = "Id"; }
public EmployeesList() { InitializeComponent(); CustomerSelectionComboBox.ItemsSource = employeeBL.GetAll(); CustomerSelectionComboBox.DisplayMemberPath = "full_Name"; }
public AddVariableExpend() { InitializeComponent(); employeeSlelctionComboBox.ItemsSource = employeeBL.GetAll(); employeeSlelctionComboBox.DisplayMemberPath = "full_Name"; }