Identite.cs 620 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace CD67.FicheCollege.Entity
  8. {
  9. /// <summary>
  10. /// Classe d'extension de celle d'Entity, nécessaire pour y associer les Metadata
  11. /// </summary>
  12. [MetadataType(typeof(Identite_Metadata))]
  13. public partial class Identite
  14. {
  15. public int Id { get { return College_Id; } }
  16. }
  17. /// <summary>
  18. /// Classe contenant les DataAnnotations pour chaque champ
  19. /// </summary>
  20. public class Identite_Metadata
  21. {
  22. }
  23. }