public async Task <Footballer> GetFootballerById([FromRoute] int footballerId)
 {
     return(await _footballerRepository.GetFootballerById(footballerId));
 }