using CD67.FicheCollege.Entity; using System.Collections.Generic; namespace CD67.FicheCollege.MVC.Models { public class ActionClasViewModel : BaseViewModel { public ActionClasViewModel(ActionCLAS model, ModeAcces acces = ModeAcces.Lecture, Dictionary bag = null) : base(model, acces, bag) { } public override string Annee_Lib { get { return Obj.College.Annee.Libelle; } } } }