public static bool SaveData(string tableName, NeonDataTableRowMetaData row, WebISGDatabaseType databaseType)
 {
     try
     {
         using (var serviceClient = new NeonISGDataServiceClient(Configuration.ActiveNeonDataServiceEndpoint))
         {
             var neonDatabase = Mapper.Map<WebISGDatabaseType, NeonISGDatabaseType>(databaseType);
             // ReSharper disable once UnusedVariable
             var rtrn = serviceClient.SaveRow(tableName, row, neonDatabase);
         }
         return true;
     }
     catch (Exception ex)
     {
         throw new Exception(string.Format("Unable to save information to database for table {0}", tableName), ex);
     }
 }