BolfTracker.Web.GamePanelViewModel.GamePanelViewModel C# (CSharp) Method

GamePanelViewModel() public method

public GamePanelViewModel ( BolfTracker.Models.Game game, IEnumerable shots, IEnumerable allPlayers, IEnumerable allHoles ) : System
game BolfTracker.Models.Game
shots IEnumerable
allPlayers IEnumerable
allHoles IEnumerable
return System
        public GamePanelViewModel(Game game, IEnumerable<Shot> shots, IEnumerable<Player> allPlayers, IEnumerable<Hole> allHoles)
        {
            Game = game;
            Shots = shots;
            _allPlayers = allPlayers;
            _allHoles = allHoles;
        }