public ActionResult GetDropdownOptions(string table, string column, WebISGDatabaseType databaseType)
 {
     List<string> distinctValues;
     using (var serviceClient = new NeonISGDataServiceClient(Configuration.ActiveNeonDataServiceEndpoint))
     {
         var database = Mapper.Map<WebISGDatabaseType, NeonISGDatabaseType>(databaseType);
         distinctValues = serviceClient.GetDistinctValues(table, column, database);
     }
     var jsonData = Json(distinctValues, JsonRequestBehavior.AllowGet);
     return jsonData;
 }