public void SetParent(CommonPage page) { if (commonPage != null) { commonPage.ParentPage = page; } }
private void init() { commonPage = new CommonPage(); commonPage.Title = "Master Barang"; productTypes = productTypeService.getProductTypes(); cmbType.ItemsSource = productTypes; }
private void init() { commonPage = new CommonPage(); commonPage.Title = "Harga Jual"; loadData(); }
public ProductList() { InitializeComponent(); commonPage = new CommonPage(); commonPage.Title = "LIST Master Barang"; lblTItle.Text = commonPage.Title; init(); }
public ProductStock() { InitializeComponent(); commonPage = new CommonPage(); commonPage.Title = "Stock Barang"; lblSiteMap.Content = commonPage.Title; init(); }
private void init() { commonPage = new CommonPage(); commonPage.Title = "Info Barang"; if (product != null) { inventories = inventoryService.getProductInventories(product); dataGrid.Columns[3].Header = product.Type.Expiration ? "Expired Date" : "Aging Date"; this.dataGrid.ItemsSource = inventories; lblProduct.Text = product.Name + " [" + product.BarCode + "]"; } }
private void initCommonPage() { commonPage = new CommonPage(); commonPage.Title = "Barang Masuk"; }
private void iniCommonPage() { commonPage = new CommonPage(); commonPage.Title = "Penetapan"; }