Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ProspectRanking and MockDraftPick objects to add new COVID changes related info #15

Open
zo0o0ot opened this issue Aug 14, 2020 · 1 comment
Labels
enhancement New feature or request hacktoberfest This issue can be a part of Hacktoberfest!

Comments

@zo0o0ot
Copy link
Contributor

zo0o0ot commented Aug 14, 2020

This year, prospect rankings and mock draft picks should have information about whether or not their schools have decided to participate in games this year.

This information should match the property names that are set up in #14 .

For example, ProspectRanking looks like this:

public class ProspectRanking
{
public int rank;
public string change;
public string playerName;
public string school;
public string position1;
public string height;
public int weight;
public string collegeClass;
public DateTime rankingDate;
public string rankingDateString;
public string draftStatus;

additional properties will likely be:

  • fallFootball
  • springFootball

Likely, the ProspectMap will also need to have the additional properties.
Here's how it looks so far:

public ProspectRankingMap()
{
//AutoMap();
// public int rank;
// public string change;
// public string playerName;
// public string school;
// public string position1;
// public string height;
// public int weight;
// public string position2;
// public DateTime rankingDate;
Map(m => m.rank).Index(0).Name("Rank");
Map(m => m.change).Index(1).Name("Change");
Map(m => m.playerName).Index(2).Name("Player");
Map(m => m.school).Index(3).Name("School");
Map(m => m.position1).Index(4).Name("Position");
Map(m => m.height).Index(5).Name("Height");
Map(m => m.weight).Index(6).Name("Weight");
Map(m => m.collegeClass).Index(7).Name("CollegeClass");
Map(m => m.rankingDateString).Index(8).Name("Date");
Map(m => m.draftStatus).Index(9).Name("DraftStatus");

@zo0o0ot zo0o0ot added enhancement New feature or request hacktoberfest This issue can be a part of Hacktoberfest! labels Aug 14, 2020
@zo0o0ot
Copy link
Contributor Author

zo0o0ot commented Oct 5, 2020

This is blocked by #19 since schools have changed their minds about when and how to play football this year.

@zo0o0ot zo0o0ot changed the title Update ProspectRanking and MockDraftPick objects to add new info Update ProspectRanking and MockDraftPick objects to add new COVID changes related info Oct 5, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request hacktoberfest This issue can be a part of Hacktoberfest!
Projects
None yet
Development

No branches or pull requests

1 participant