Guest User

Untitled

a guest
Nov 25th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. //Clase generada desde el mismo modelo desde la CAPA MODELO
  2.  
  3. namespace MODELO
  4. {
  5. using System;
  6. using System.Collections.Generic;
  7.  
  8. public partial class T_Alumno
  9. {
  10. public int Id { get; set; }
  11. public string Codigo { get; set; }
  12. public string Nombres { get; set; }
  13. public string Apellidos { get; set; }
  14. public int Edad { get; set; }
  15. public string Email { get; set; }
  16. public int IdSexo { get; set; }
  17. public int IdProfesion { get; set; }
  18. public int IdPais { get; set; }
  19.  
  20. public virtual T_Pais T_Pais { get; set; }
  21. public virtual T_Profesion T_Profesion { get; set; }
  22. public virtual T_Sexo T_Sexo { get; set; }
  23. }
  24. }
Add Comment
Please, Sign In to add comment