public ActionResult Delete(int id)
        {
            _playerRepo.DeletePlayerFromTeam(id);

            return(View("SuccessPage"));
        }