public async Task <int> UpdateFootballer([FromRoute] int playerId, FootballerDto footballerDto)
 {
     return(await _footballerRepository.UpdateFootballer(playerId, footballerDto));
 }