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