Example #1
0
        private void unitButton_Click(object sender, EventArgs e)
        {
            string sr = string.Empty;

            sr = unitTextBox.Text;
            if (sr != "")
            {
                Unit aUnit = new Unit();
                aUnit.UnitName = sr;

                UnitCreateBLL aBll  = new UnitCreateBLL();
                bool          check = aBll.CheckExit(sr);
                if (!check)
                {
                    unitCreatelabel.Visible = true;
                    unitCreatelabel.Text    = aBll.InsertUnit(aUnit);
                    unitTextBox.Clear();
                }
                else
                {
                    MessageBox.Show("Unit Already Exit");
                }
            }
            else
            {
                MessageBox.Show("Please Check Your Input");
            }
        }