UtilisateurViewModel.cs 594 B

12345678910111213141516171819
  1. using CD67.FicheCollege.Entity;
  2. using CD67.FicheCollege.Factory;
  3. using CD67.FicheCollege.MVC.Internal;
  4. using System.Collections.Generic;
  5. using System.Web.Mvc;
  6. namespace CD67.FicheCollege.MVC.Models
  7. {
  8. public class UtilisateurViewModel : BaseViewModel<Utilisateur>
  9. {
  10. public UtilisateurViewModel(Utilisateur model, ModeAcces acces = ModeAcces.Lecture, Dictionary<string, object> bag = null) : base(model, acces, bag)
  11. {
  12. }
  13. public override int Annee_Id { get { return 0; } }
  14. public override string Annee_Lib { get { return ""; } }
  15. }
  16. }