public SchoolFeeParticularUpdate(CommonExchange.SysAccess userInfo, CommonExchange.SchoolFeeParticular particularInfo,
                                         SchoolFeeLogic schoolFeeManager)
            : base(userInfo, schoolFeeManager)
        {
            this.InitializeComponent();

            _particularInfo     = particularInfo;
            _particularInfoTemp = (CommonExchange.SchoolFeeParticular)particularInfo.Clone();

            this.FormClosing     += new FormClosingEventHandler(ClassClosing);
            this.btnClose.Click  += new EventHandler(btnCloseClick);
            this.btnUpdate.Click += new EventHandler(btnUpdateClick);
            this.btnDelete.Click += new EventHandler(btnDeleteClick);
        }
Exemple #2
0
        //#####################################################CLASS SCHOOLFEEPARTICULAR EVENTS #################################################################
        //event is raised when the class is loaded
        protected virtual void ClassLoad(object sender, EventArgs e)
        {
            _particularInfo = new CommonExchange.SchoolFeeParticular();

            _schoolFeeManager.InitializeFeeCategoryCombo(this.cboFeeCategory);
        } //------------------------------