public PredictionController(IPlayerTasks playerTasks)
 {
     this.playerTasks = playerTasks;
 }
 public PlayerController(IPlayerTasks playerTasks, ITeamTasks teamTasks, IFormsAuthentication formsAuthentication)
 {
     this.playerTasks = playerTasks;
     this.teamTasks = teamTasks;
     this.formsAuthentication = formsAuthentication;
 }