Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public class Cliente
  2. {
  3. public int ClienteId { get; set; }
  4. public string NombreCompleto { get; set; }
  5.  
  6. public int BeneficiarioId { get; set; }
  7.  
  8. public virtual Beneficiario Beneficiario { get; set; }
  9. }
  10.  
  11. {
  12. public int BeneficiarioId { get; set; }
  13.  
  14. public string Nombre { get; set; }
  15.  
  16. public string Parentesco { get; set; }
  17.  
  18.  
  19. public virtual ICollection<Cliente> Cliente { get; set; }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement