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