public bool UpdateOrderTracking(OperationVo operationVo)
 {
     bool bResult = false;
     try
     {
         bResult = operationDao.UpdateOrderTracking(operationVo);
     }
     catch (BaseApplicationException Ex)
     {
         throw Ex;
     }
     return bResult;
 }
 public OperationVo GetCustomerOrderTrackingDetails(int orderId)
 {
     OperationVo operationVo = new OperationVo();
     try
     {
         operationVo = operationDao.GetCustomerOrderTrackingDetails(orderId);
     }
     catch (BaseApplicationException Ex)
     {
         throw Ex;
     }
     return operationVo;
 }
        protected void Page_Load(object sender, EventArgs e)
        {
            SessionBo.CheckSession();
            path        = Server.MapPath(ConfigurationManager.AppSettings["xmllookuppath"].ToString());
            orderNumber = operationBo.GetOrderNumber();
            orderNumber = orderNumber + 1;
            if (!string.IsNullOrEmpty(Session["advisorVo"].ToString()))
            {
                advisorVo = (AdvisorVo)Session["advisorVo"];
            }
            if (Request.QueryString["action"] != null)
            {
                ViewForm    = Request.QueryString["action"].ToString();
                operationVo = (OperationVo)Session["operationVo"];
            }
            if (Session["operationVo"] != null)
            {
                operationVo = (OperationVo)Session["operationVo"];
            }
            rmVo = (RMVo)Session[SessionContents.RmVo];

            int bmID = rmVo.RMId;

            if (!IsPostBack)
            {
                rbtnNo.Checked = true;
                bindModeOfHolding();
                if (Request.QueryString["CustomerId"] != null)
                {
                    customerId = Convert.ToInt32(Request.QueryString["CustomerId"]);
                    SetCustomerDetails();
                }

                if (Session[SessionContents.CurrentUserRole].ToString() == "Admin")
                {
                    txtCustomerName_autoCompleteExtender.ContextKey    = advisorVo.advisorId.ToString();
                    txtCustomerName_autoCompleteExtender.ServiceMethod = "GetAdviserCustomerName";
                }
                if (ddlForm.SelectedValue == "0")
                {
                    HideDematDetails();
                }
                rbtnNo_Load();
            }

            //BindAssetParticularForBonds();
            LoadBondIssuerName();
            BindFrequencyDropdown();
            BindPaymentMode();
        }