BKI_DichVuMatDat.NghiepVu.f354_danh_sach_quy_thuong_de.check_validate_data_is_ok C# (CSharp) Method

check_validate_data_is_ok() private method

private check_validate_data_is_ok ( ) : bool
return bool
        private bool check_validate_data_is_ok()
        {
            if (m_sle_loai_quy_thu_nhap.EditValue == null)
            {
                CHRM_BaseMessages.MsgBox_Error("Vui lòng chọn loại quỹ thu nhập!");
                return false;
            }
            else if (m_sle_cach_tinh_thue.EditValue == null)
            {
                CHRM_BaseMessages.MsgBox_Error("Vui lòng chọn cách tính thuế!");
                return false;
            }
            else if (m_txt_ten_quy.Text.Trim() == "")
            {
                CHRM_BaseMessages.MsgBox_Error("Vui lòng nhập tên quỹ!");
                return false;
            }
            return true;
        }