private Score score(int year, int month, int week, int day) { Score score = new Score(); score.year = year; score.month = month; score.week = week; score.day = day; return score; }
private Score score(int year, int month, int week, int day, int scope, long points) { Score score = new Score(); score.score = points; score.scope = scope; score.year = year; score.month = month; score.week = week; score.day = day; return score; }