public Player CreatePlayer(string firstName, string lastName, bool isObsolete, CountyTeam countyTeam, ClubTeam clubTeam)
 {
     using (playerViewContext)
     {
         return playerViewContext.CreatePlayer(firstName, lastName, isObsolete, countyTeam, clubTeam);
     }
 }
 public List<Player> GetPlayersByClub(ClubTeam club)
 {
     throw new NotImplementedException();
 }
 public Player GetPlayerByClubAndFirstOrLastName(ClubTeam club, string firstName, string lastName)
 {
     throw new NotImplementedException();
 }