Example #1
0
        private void Get_Student_TC_Details()
        {
            string Academic_Year        = string.Empty;
            string Academic_Year_Format = string.Empty;

            _student_TC       = new Student_TC();
            _student_TC_Model = _student_TC.Get_Student_TC_Details(_student_ID);

            if (_student_TC_Model.Sequence_No != null)
            {
                txtTCNumber.Text          = Convert.ToString(_student_TC_Model.TC_Number);
                ddlTCReason.SelectedValue = _student_TC_Model.Reason_ID;
                txtMaskedDate.Text        = String.Format("{0:dd.MM.yyyy}", _student_TC_Model.TC_Date);

                Academic_Year              = Convert.ToString(_student_TC_Model.Academic_Year);
                Academic_Year_Format       = Academic_Year.Left(4) + "-" + Academic_Year.Right(4);
                txtMaskedAcademicYear.Text = Academic_Year_Format;
                btnDelete.Visible          = true;
                _sequence_No     = _student_TC_Model.Sequence_No;
                txtTCAmount.Text = Convert.ToString(_student_TC_Model.TC_Fee_Amount);
            }
            else
            {
                Academic_Year              = Convert.ToString(Common.Get_Current_Academic_Year());
                Academic_Year_Format       = Academic_Year.Left(4) + "-" + Academic_Year.Right(4);
                txtMaskedDate.Text         = String.Format("{0:dd.MM.yyyy}", DateTime.Today);
                txtMaskedAcademicYear.Text = Academic_Year_Format;
                btnDelete.Visible          = false;
            }
        }
Example #2
0
        public void Get_TC_Reason_Type()
        {
            List <TC_Reason_Type> list = new List <TC_Reason_Type>();

            list.Add(new TC_Reason_Type {
                TC_Reason_ID = 0, TC_Reason = "Select"
            });

            List <TC_Reason_Type> list_TC_Reason_Type = new List <TC_Reason_Type>();

            _student_TC         = new Student_TC();
            list_TC_Reason_Type = _student_TC.Get_TC_Reason_Type();

            if (list_TC_Reason_Type != null)
            {
                list.AddRange(list_TC_Reason_Type);
            }
            ddlTCReason.DataSource    = list;
            ddlTCReason.DisplayMember = "TC_Reason";
            ddlTCReason.ValueMember   = "TC_Reason_ID";
        }
Example #3
0
        private void btnDelete_Click(object sender, EventArgs e)
        {
            Search_Student_Details();

            if (Validate_Controls())
            {
                try
                {
                    DialogResult dResult = MessageBox.Show("Are you sure to delete this record?", "Student TC", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
                    if (dResult == DialogResult.Yes)
                    {
                        _student_TC = new Student_TC();
                        short output = _student_TC.Delete_TC_Details(_student_ID);

                        switch (output)
                        {
                        case 1:
                            MessageBox.Show("Record deleted successfully.", "Student TC", MessageBoxButtons.OK, MessageBoxIcon.Information);
                            break;

                        case -1:
                            MessageBox.Show("Error in deleting record.\n Please contact support team.", "Student TC", MessageBoxButtons.OK, MessageBoxIcon.Error);
                            break;
                        }
                    }
                }
                catch
                {
                    MessageBox.Show("Error: Please contact support team.", "Student TC", MessageBoxButtons.YesNo, MessageBoxIcon.Error);
                }
                finally
                {
                    Reset_Controls();
                    txtRegistrationNo.Text = string.Empty;
                }
            }
        }
Example #4
0
        private void btnSave_Click(object sender, EventArgs e)
        {
            // Search_Student_Details();
            if (Validate_Controls())
            {
                _student_TC       = new Student_TC();
                _student_TC_Model = new Student_TC_Model_Info()
                {
                    Academic_Year = Convert.ToInt32(txtMaskedAcademicYear.Text.Replace("-", "")),
                    Sequence_No   = _sequence_No,
                    Student_ID    = _student_ID,
                    TC_Date       = Common.Convert_String_To_Date(txtMaskedDate.Text),
                    Reason_ID     = Convert.ToInt32(ddlTCReason.SelectedValue),
                    TC_Number     = Convert.ToInt32(txtTCNumber.Text),
                    TC_Fee_Amount = Convert.ToInt32(txtTCAmount.Text),
                };
                short result = _student_TC.USP_Save_Student_TC_Info(_student_TC_Model);

                switch (result)
                {
                case 1:
                    MessageBox.Show("Record saved successfully.", "Student TC", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    Reset_Controls();
                    txtRegistrationNo.Text = string.Empty;
                    break;

                case -1:
                    MessageBox.Show("Error in saving record.\n Please contact support team.", "Student TC", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    break;

                case 0:
                    MessageBox.Show("TC Number already exists.", "Student TC", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    break;
                }
            }
        }