public IEnumerable <Statistics> GetAllStatisticsByUserId(long Id)    // get all game statistics for concrete user
 {
     return(statisticsRepository.GetStatisticsByUser(Id));
 }