Exemple #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        //Logging Start
        string id = string.Format("Id: {0} Uri: {1}", Guid.NewGuid(), HttpContext.Current.Request.Url);

        using (Utils utility = new Utils())
        {
            utility.MethodStart(id, System.Reflection.MethodBase.GetCurrentMethod());
        }
        SZ_Company_ID            = ((Bill_Sys_BillingCompanyObject)Session["BILLING_COMPANY_OBJECT"]).SZ_COMPANY_ID;
        SZ_User_ID               = ((Bill_Sys_UserObject)Session["USER_OBJECT"]).SZ_USER_ID;
        extddlCaseStatus.Flag_ID = SZ_Company_ID;
        extddlCaseType.Flag_ID   = SZ_Company_ID;
        extddlInsurance.Flag_ID  = txtCompanyID.Text.ToString();
        extddlLocation.Flag_ID   = SZ_Company_ID;
        try
        {
            ArrayList ArPat = new ArrayList();
            ArPat.Add(SZ_Company_ID);
            ArPat.Add(SZ_User_ID);
            ArPat.Add(null);
            ArPat.Add(null);
            ArPat.Add(null);
            ArPat.Add(null);
            ArPat.Add(null);
            ArPat.Add(null);
            ArPat.Add(null);
            ArPat.Add(null);
            ArPat.Add(null);
            ArPat.Add(null);
            ArPat.Add(null);
            ArPat.Add(null);
            FillPatientGrid FPG = new FillPatientGrid();
            grdPatientList.DataSource = FPG.FillPatient(ArPat);
            grdPatientList.DataBind();
        }
        catch (Exception ex)
        {
            Elmah.ErrorSignal.FromCurrentContext().Raise(ex);
            using (Utils utility = new Utils())
            {
                utility.MethodEnd(id, System.Reflection.MethodBase.GetCurrentMethod());
            }
            string str2 = "Error Request=" + id + ".Please share with Technical support.";
            base.Response.Redirect("../Bill_Sys_ErrorPage.aspx?ErrMsg=" + str2);
        }

        //Method End

        using (Utils utility = new Utils())
        {
            utility.MethodEnd(id, System.Reflection.MethodBase.GetCurrentMethod());
        }
    }
Exemple #2
0
    protected void btnSearch_Click(object sender, EventArgs e)
    {
        //Logging Start
        string id = string.Format("Id: {0} Uri: {1}", Guid.NewGuid(), HttpContext.Current.Request.Url);

        using (Utils utility = new Utils())
        {
            utility.MethodStart(id, System.Reflection.MethodBase.GetCurrentMethod());
        }

        try
        {
            ArrayList ArPat = new ArrayList();
            ArPat.Add(SZ_Company_ID);
            ArPat.Add(SZ_User_ID);

            if (txtCaseNo.Text != "" && txtCaseNo.Text != null)
            {
                ArPat.Add(txtCaseNo.Text);
            }
            else
            {
                ArPat.Add(null);
            }

            if (extddlCaseType.Text != "NA")
            {
                ArPat.Add(extddlCaseType.Text.ToString());
            }
            else
            {
                ArPat.Add(null);
            }
            if (extddlCaseStatus.Text != "NA")
            {
                ArPat.Add(extddlCaseStatus.Text.ToString());
            }
            else
            {
                ArPat.Add(null);
            }

            if (txtPatientName.Text != "" && txtPatientName.Text != null)
            {
                ArPat.Add(txtPatientName.Text);
            }
            else
            {
                ArPat.Add(null);
            }
            if (txtInsuranceCompany.Text != "" && txtInsuranceCompany.Text != null)
            {
                ArPat.Add(txtInsuranceCompany.Text);
            }
            else
            {
                ArPat.Add(null);
            }
            if (txtClaimNumber.Text != "" && txtClaimNumber.Text != null)
            {
                ArPat.Add(txtClaimNumber.Text);
            }
            else
            {
                ArPat.Add(null);
            }

            if (txtSSNNo.Text != "" && txtSSNNo.Text != null)
            {
                ArPat.Add(txtSSNNo.Text);
            }
            else
            {
                ArPat.Add(null);
            }
            if (txtDateofAccident.Text != "" && txtDateofAccident.Text != null)
            {
                ArPat.Add(txtDateofAccident.Text);
            }
            else
            {
                ArPat.Add(null);
            }
            if (txtDateofBirth.Text != "" && txtDateofBirth.Text != null)
            {
                ArPat.Add(txtDateofBirth.Text);
            }
            else
            {
                ArPat.Add(null);
            }
            if (extddlLocation.Text != "NA")
            {
                ArPat.Add(extddlLocation.Text.ToString());
            }
            else
            {
                ArPat.Add(null);
            }
            if (txtpatientid.Text != "" && txtpatientid.Text != null)
            {
                ArPat.Add(txtpatientid.Text);
            }
            else
            {
                ArPat.Add(null);
            }
            if (txtChartNo.Text != "" && txtChartNo.Text != null)
            {
                ArPat.Add(txtChartNo.Text);
            }
            else
            {
                ArPat.Add(null);
            }

            FillPatientGrid FPG = new FillPatientGrid();
            grdPatientList.DataSource = FPG.FillPatient(ArPat);
            grdPatientList.DataBind();

            //fillcontrol(); //check serarch parameter
            //grdPatientList.XGridBindSearch();
            //clearcontrol();//clear all serach parameter for xml
            //SoftDelete();
        }
        catch (Exception ex)
        {
            Elmah.ErrorSignal.FromCurrentContext().Raise(ex);
            using (Utils utility = new Utils())
            {
                utility.MethodEnd(id, System.Reflection.MethodBase.GetCurrentMethod());
            }
            string str2 = "Error Request=" + id + ".Please share with Technical support.";
            base.Response.Redirect("../Bill_Sys_ErrorPage.aspx?ErrMsg=" + str2);
        }

        //Method End

        using (Utils utility = new Utils())
        {
            utility.MethodEnd(id, System.Reflection.MethodBase.GetCurrentMethod());
        }
    }