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> GetPlayersByCounty(CountyTeam county)
 {
     throw new NotImplementedException();
 }
 public Player GetPlayerByCOuntyAndFirstOrLastName(CountyTeam county, string firstName, string lastName)
 {
     throw new NotImplementedException();
 }