ActionClasViewModel.cs 453 B

123456789101112131415
  1. using CD67.FicheCollege.Entity;
  2. using System.Collections.Generic;
  3. namespace CD67.FicheCollege.MVC.Models
  4. {
  5. public class ActionClasViewModel : BaseViewModel<ActionCLAS>
  6. {
  7. public ActionClasViewModel(ActionCLAS model, ModeAcces acces = ModeAcces.Lecture, Dictionary<string, object> bag = null) : base(model, acces, bag)
  8. {
  9. }
  10. public override string Annee_Lib { get { return Obj.College.Annee.Libelle; } }
  11. }
  12. }