コード例 #1
0
 private void frmMasterCategory_Load(object sender, EventArgs e)
 {
     try
     {
         if (MASTERCategoryID != 0)//case of editing master category
         {
             TBL_MP_Master_Category dbModel = (new ServiceMASTERS()).GetMasterDBCategory(this.MASTERCategoryID);
             txtCategoryName.Text = dbModel.CategoryDescription;
         }
         else
         {
             txtCategoryName.Text = string.Empty;
             chkIsActive.Checked  = true;
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
コード例 #2
0
        private void btnOK_Click(object sender, EventArgs e)
        {
            TBL_MP_Master_Category dbModel  = null;
            ServiceMASTERS         _service = new ServiceMASTERS();

            try
            {
                errorProvider1.Clear();
                if (this.ValidateChildren() == true)
                {
                    if (this.MASTERCategoryID == 0)
                    {
                        dbModel = new TBL_MP_Master_Category();
                    }
                    else
                    {
                        dbModel = _service.GetMasterDBCategory(this.MASTERCategoryID);
                    }

                    dbModel.CategoryDescription = txtCategoryName.Text.Trim();
                    dbModel.IsActive            = chkIsActive.Checked;

                    if (this.MASTERCategoryID == 0)
                    {
                        _service.AddNewMasterCategory(dbModel);
                    }
                    else
                    {
                        _service.UpdateMasterCategory(dbModel);
                    }

                    this.DialogResult = DialogResult.OK;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }