public bool SaveCallRequestMobile(string BuyerPhoneNo, string CarID, string CustomerPhoneNo, string AuthenticationID, string CustomerID)
    {
        MobileBL objMobileBL = new MobileBL();
        CallRequestMobileBL objCallRequestMobile = new CallRequestMobileBL();
        if (CustomerID.Trim() != "")
        {
            string parameters=BuyerPhoneNo+","+CarID+","+CustomerPhoneNo;
            DataSet dsSaveCustInfo = objMobileBL.SaveMobileCustomerInfo("SaveCallRequestMobile", CustomerID,AuthenticationID,parameters);
        }
        if (AuthenticationID == ConfigurationManager.AppSettings["AppleID"].ToString())
        {
            objCallRequestMobile.SaveCallRequestMobile(BuyerPhoneNo, CarID, CustomerPhoneNo);

            return true;
        }
        else
        {
            return false;
        }
    }
    public bool SaveCallRequestMobile(string BuyerPhoneNo, string CarID, string CustomerPhoneNo)
    {
        CallRequestMobileBL objCallRequestMobile = new CallRequestMobileBL();

        objCallRequestMobile.SaveCallRequestMobile(BuyerPhoneNo, CarID, CustomerPhoneNo);

        return true;
    }