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);
        }