Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9.  
  10. namespace AkaelApplication.Models
  11. {
  12. using System;
  13. using System.Collections.Generic;
  14.  
  15. public partial class AreaProcesso
  16. {
  17. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
  18. public AreaProcesso()
  19. {
  20. this.MetaEspecifica = new HashSet<MetaEspecifica>();
  21. }
  22.  
  23. public int IdAreaProcesso { get; set; }
  24.  
  25. [Required(ErrorMessage = "Campo obrigatório")]
  26. public string Sigla { get; set; }
  27. [Required(ErrorMessage = "Campo obrigatório")]
  28. public string Nome { get; set; }
  29. [Required(ErrorMessage = "Campo obrigatório")]
  30. public string Descricao { get; set; }
  31. [Required(ErrorMessage = "Campo obrigatório")]
  32. public int IdNivelMaturidade { get; set; }
  33. [Required(ErrorMessage = "Campo obrigatório")]
  34. public int IdCategoria { get; set; }
  35. [Required(ErrorMessage = "Campo obrigatório")]
  36. public int IdModelo { get; set; }
  37.  
  38. public virtual Categoria Categoria { get; set; }
  39. public virtual Modelo Modelo { get; set; }
  40. public virtual NivelMaturidade NivelMaturidade { get; set; }
  41. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  42. public virtual ICollection<MetaEspecifica> MetaEspecifica { get; set; }
  43. }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement