Пример #1
0
        public JsonResult GetGeoDetails(string PinCode)
        {
            GEO       obj   = new GEO();
            BALCommon CScmn = new BALCommon(ConStr);

            try
            {
                obj = CScmn.GetGeoDetails(PinCode);
            }
            catch (Exception ex)
            {
                ExecptionLogger.FileHandling("Fee(GetGeoDetails)", "Error_014", ex, "Fee");
            }
            finally
            {
            }
            return(Json(obj, JsonRequestBehavior.AllowGet));
        }