using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace LYFZ.Software.UI.InventoryManagement.PurchasingManagement { public partial class FrmSelectManufacturer : LYFZ.ComponentLibrary.BaseContentsFormMain { public FrmSelectManufacturer() { InitializeComponent(); this.Shown += FrmSelectManufacturer_Shown; this.btnSave.Click += btnSave_Click; } protected virtual void btnSave_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void FrmSelectManufacturer_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } } }