Esempio n. 1
0
        public JObject SendAppDownloadLink(HttpContext context)
        {
            JObject respJobj = new JObject();

            try
            {
                GT.BusinessLogicLayer.Index obj = new GT.BusinessLogicLayer.Index();
                respJobj = obj.SendAppDownloadLink(MyConf.MyConnectionString, Convert.ToInt32(context.Request["CountryId"]), Convert.ToString(context.Request["MobileNumber"]), Convert.ToString(context.Request["Email"]), Convert.ToInt32(context.Request["LeadType"]));
            }
            catch (Exception ex)
            {
                Logger.TraceLog("Exception In Index.ashx :" + ex.ToString());
            }
            return(respJobj);
        }