public BaseballLeagueManager()
 {
     _repo = new BaseballRepository();
 }
 public BaseballLeagueManager(IBaseballRepository repo)
 {
     _repo = repo;
 }
 public ReportsController(IBaseballRepository repo)
 {
     _repo = repo;
 }