Beispiel #1
0
        }//---------------------------

        //#####################################################END CLASS SchoolFeeDetails EVENTS #################################################################

        //##############################################COMBOBOX cboSchoolYearParticular EVENTS####################################################
        //event is raised when the control is validated
        private void cboSchoolYearParticularSelectedIndexChanged(object sender, EventArgs e)
        {
            if (this.cboSchoolYearParticular.SelectedIndex != -1)
            {
                _detailsInfo.SchoolFeeParticularInfo.FeeParticularSysId =
                    _schoolFeeManager.GetParticularSysId(_schoolFeeManager.GetConcatParticularSysId(this.cboSchoolYearParticular.Text));

                this.txtAmount.Focus();

                if (_isForCreate)
                {
                    _schoolFeeManager.InitializeSchoolFeeParticularCheckedBox(_detailsInfo.SchoolFeeParticularInfo.FeeParticularSysId, this.chkOptional,
                                                                              this.chkOfficeAccess, this.chkEntryLevelIncluded, this.chkGraduationFee, ref _detailsInfo);
                }
            }
        }//------------------------------