private static DaoDataCommunityAccountStats TransformDataCommunityAccountStatsToDaoDataCommunityAccountStats(DataCommunityAccountRatings stats) {
DaoDataCommunityAccountStats myDaoDataCommunityAccountStats = new DaoDataCommunityAccountStats();
myDaoDataCommunityAccountStats.setBattle_avg_performance(stats.getBattle_avg_performance());
myDaoDataCommunityAccountStats.setBattle_avg_xp(stats.getBattle_avg_xp());
myDaoDataCommunityAccountStats.setBattle_wins(stats.getBattle_wins());
myDaoDataCommunityAccountStats.setBattles(stats.getBattles());
myDaoDataCommunityAccountStats.setCtf_points(stats.getCtf_points());
myDaoDataCommunityAccountStats.setDamage_dealt(stats.getDamage_dealt());
myDaoDataCommunityAccountStats.setDropped_ctf_points(stats.getDropped_ctf_points());
myDaoDataCommunityAccountStats.setFrags(stats.getFrags());
myDaoDataCommunityAccountStats.setIntegrated_rating(stats.getIntegrated_rating());
myDaoDataCommunityAccountStats.setSpotted(stats.getSpotted());
myDaoDataCommunityAccountStats.setXp(stats.getXp());
return myDaoDataCommunityAccountStats;
}