Guest User

Untitled

a guest
Feb 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Globalization;
  5. using System.Web.Mvc;
  6. using System.Web.Security;
  7.  
  8. namespace DACO.Web.Mvc.Controllers.ViewModels
  9. {
  10.  
  11. public class QuestionsFormModels
  12. {
  13. [Required]
  14. public int DimensionId { get; set; }
  15.  
  16. public int ResponserId { get; set; }
  17.  
  18. public string DimensionName { get; set; }
  19.  
  20. public Domain.Questions Question { get; set; }
  21.  
  22. [Display(Name = "Primeira Pergunta")]
  23. public virtual string A { get; set; }
  24.  
  25. [Display(Name = "Segunda Pergunta")]
  26. public virtual string B { get; set; }
  27.  
  28. [Display(Name = "Terceira Pergunta")]
  29. public virtual string C { get; set; }
  30.  
  31. [Display(Name = "Quarta Pergunta")]
  32. public virtual string D { get; set; }
  33.  
  34. //HOJE
  35. [Required]
  36. public virtual string hj_1 { get; set; }//referece a resposta para a pergunta A_priv ou B_pub
  37.  
  38. [Required]
  39. public virtual string hj_2 { get; set; }//referece a resposta para a pergunta B_priv ou B_pub
  40.  
  41. [Required]
  42. public virtual string hj_3 { get; set; }//referece a resposta para a pergunta C_priv ou C_pub
  43.  
  44. [Required]
  45. public virtual string hj_4 { get; set; }//referece a resposta para a pergunta D_priv ou D_pub
  46.  
  47. //AMANHÃ
  48. [Required]
  49. public virtual string dsj_1 { get; set; }//referece a resposta para a pergunta A_priv ou B_pub
  50.  
  51. [Required]
  52. public virtual string dsj_2 { get; set; }//referece a resposta para a pergunta B_priv ou B_pub
  53.  
  54. [Required]
  55. public virtual string dsj_3 { get; set; }//referece a resposta para a pergunta C_priv ou C_pub
  56.  
  57. [Required]
  58. public virtual string dsj_4 { get; set; }//referece a resposta para a pergunta D_priv ou D_pub
  59.  
  60. public QuestionsFormModels()
  61. {
  62. ResponserId = 0;
  63. }
  64. }
  65.  
  66. }
Add Comment
Please, Sign In to add comment