Drosty/truegm

View on GitHub
app/models/schedule_view_model.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ScheduleViewModel

  def initialize(nfl_matchups = [], league_matchups = [])
    @nfl_matchups = nfl_matchups
    @league_matchups = league_matchups
  end

  def nfl_matchups
    @nfl_matchups
  end

  def league_matchups
    @league_matchups
  end
  
end