asp.net mvc @ Html.CheckBoxFor

J'ai des cases à cocher dans mon formulaire
asp.net mvc @ Html.CheckBoxFor

J'ai ajouté à mon modèle

 using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Web;

 namespace CorePartners_Site2.Models
 {
public class CareerForm
     {
    //....
    public List<CheckBoxes> EmploymentType { get; set; } 
      }
 }

 public class CheckBoxes
 {
     public string Text { get; set; }
     public bool Checked { get; set; }
 }

et ajouté à ma forme

@Html.CheckBoxFor(model => model.EmploymentType, new { id = "employmentType_1" })
@Html.CheckBoxFor(model => model.EmploymentType, new { id = "employmentType_2" })
@Html.CheckBoxFor(model => model.EmploymentType, new { id = "employmentType_3" })

mais j'obtiens l'erreur
asp.net mvc @ Html.CheckBoxFor

Quel est le problème?

source d'informationauteur Heidel