|
|
@@ -1,9 +1,4 @@
|
|
|
-using System;
|
|
|
-using System.Collections.Generic;
|
|
|
-using System.ComponentModel.DataAnnotations;
|
|
|
-using System.Linq;
|
|
|
-using System.Text;
|
|
|
-using System.Threading.Tasks;
|
|
|
+using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
namespace CD67.FicheCollege.Entity
|
|
|
{
|
|
|
@@ -24,9 +19,11 @@ namespace CD67.FicheCollege.Entity
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
[Required]
|
|
|
+ [Display(Name = "Action éducative")]
|
|
|
public int ActionEduId { get; set; }
|
|
|
|
|
|
[Required]
|
|
|
+ [Display(Name = "Collège")]
|
|
|
public int CollegeId { get; set; }
|
|
|
|
|
|
[Display(Name = "Nombre d'élèves")]
|
|
|
@@ -35,9 +32,11 @@ namespace CD67.FicheCollege.Entity
|
|
|
[Display(Name = "Montant")]
|
|
|
public int Montant { get; set; }
|
|
|
|
|
|
+ [DataType(DataType.MultilineText)]
|
|
|
[Display(Name = "Commentaire (interne)")]
|
|
|
public int CommentaireInterne { get; set; }
|
|
|
|
|
|
+ [DataType(DataType.MultilineText)]
|
|
|
[Display(Name = "Commentaire (public)")]
|
|
|
public int CommentairePublic { get; set; }
|
|
|
|