コード例 #1
0
 public PurchasingUpdate()
 {
     InitializeComponent();
     EmployeeSelectionComboBox.ItemsSource       = employeeBL.GetAll();
     EmployeeSelectionComboBox.DisplayMemberPath = "full_Name";
     purchasingUpdateComboBox.ItemsSource        = purchasingFromSupplierBL.GetAll();
     purchasingUpdateComboBox.DisplayMemberPath  = "Id";
 }
コード例 #2
0
 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";
 }
コード例 #4
0
 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";
 }
コード例 #5
0
 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";
 }
コード例 #6
0
 public EmployeesList()
 {
     InitializeComponent();
     CustomerSelectionComboBox.ItemsSource       = employeeBL.GetAll();
     CustomerSelectionComboBox.DisplayMemberPath = "full_Name";
 }
コード例 #7
0
 public AddVariableExpend()
 {
     InitializeComponent();
     employeeSlelctionComboBox.ItemsSource       = employeeBL.GetAll();
     employeeSlelctionComboBox.DisplayMemberPath = "full_Name";
 }