public Dictionary <string, object> ApiAuthValidate(string apiKey, Boolean isValidate, string apiSecret = "") { Dictionary <string, object> response = new Dictionary <string, object>(); try { BusinessHelper businessHelperObj = new BusinessHelper(); response = businessHelperObj.ApiAuthValidate(CommonClasses.MyConf.MyConnectionString, apiKey, isValidate, apiSecret); } catch (Exception ex) { Logger.ExceptionLog("Exception in ApiHelper " + ex.ToString()); } return(response); }