| 1234567891011121314151617181920212223242526272829 |
- 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 int Id
- {
- get
- {
- return Obj.College_Id;
- }
- }
- public override string Annee_Lib
- {
- get
- {
- return Obj.College.Annee.Libelle;
- }
- }
- }
- }
|