Advertisement
carloswm85

Untitled

Jul 1st, 2022
1,031
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.49 KB | None | 0 0
  1. public class TalonarioNuevoViewModel : MessageModel
  2. {
  3.     public int IdCheckbook { get; set; } // IdTalonario
  4.     public string NumberProducing { get; set; } // Nro de productor
  5.     public string ClaimantFullName { get; set; } // Nombre titular
  6.     [
  7.         Display(
  8.             Name = "EDIT_NOMBRE_PEDIMENTO_LABEL",
  9.             ResourceType = typeof(Resources.Talonario))
  10.     ]
  11.     [
  12.         Required(
  13.             ErrorMessageResourceName = "EDIT_NOMBRE_PEDIMENTO_VALIDATION_MESSAGE",
  14.             ErrorMessageResourceType = typeof(Resources.Talonario))
  15.     ]
  16.     public string MiningClaimName { get; set; } // Nombre pedimento
  17.     public string MiningClaimNameText { get; set; } // Nombre pedimento
  18.     [
  19.         Display(
  20.             Name = "EDIT_CODIGO_TALONARIO_LABEL",
  21.             ResourceType = typeof(Resources.Talonario))
  22.     ]
  23.     [
  24.         Required(
  25.             ErrorMessageResourceName = "EDIT_CODIGO_TALONARIO_VALIDATION_MESSAGE",
  26.             ErrorMessageResourceType = typeof(Resources.Talonario))
  27.     ]
  28.     public string CheckbookCodeNumber { get; set; } // Código talonario
  29.     [
  30.         Display(
  31.             Name = "EDIT_PERIODO_VENCIMIENTO_LABEL",
  32.             ResourceType = typeof(Resources.Talonario))
  33.     ]
  34.     [
  35.         Required(
  36.             ErrorMessageResourceName = "EDIT_PERIODO_VENCIMIENTO_VALIDATION_MESSAGE",
  37.             ErrorMessageResourceType = typeof(Resources.Talonario))
  38.     ]
  39.     public string ExpirationPeriod { get; set; } // Período vencimiento
  40.     [
  41.         Display(
  42.             Name = "EDIT_FECHA_VENCIMIENTO_LABEL",
  43.             ResourceType = typeof(Resources.Talonario))
  44.     ]
  45.     [
  46.         Required(
  47.             ErrorMessageResourceName = "EDIT_FECHA_VENCIMIENTO_VALIDATION_MESSAGE",
  48.             ErrorMessageResourceType = typeof(Resources.Talonario))
  49.     ]
  50.     public DateTime ExpirationDate { get; set; } // Fecha vencimiento
  51.     [
  52.         Display(
  53.             Name = "EDIT_VEP_PAGO_ELECTRONICO_LABEL",
  54.             ResourceType = typeof(Resources.Talonario))
  55.     ]
  56.     [
  57.         Required(
  58.             ErrorMessageResourceName = "EDIT_VEP_PAGO_ELECTRONICO_VALIDATION_MESSAGE",
  59.             ErrorMessageResourceType = typeof(Resources.Talonario))
  60.     ]
  61.     public string VepTaxPayment { get; set; } // VEP, 'Volante Electrónico de Pago', pagado a Rentas
  62.  
  63.     public List<_SysConfigurationListViewModel> SysConfigurationList { get; set; } // System variables
  64.  
  65.     public List<SelectListItem> FileDropdownList { get; set; } // Expedientes
  66.     [
  67.         Display(
  68.             Name = "EDIT_EXPEDIENTE_ORIGINAL_LABEL",
  69.             ResourceType = typeof(Resources.Talonario))
  70.     ]
  71.     [
  72.         Required(
  73.             ErrorMessageResourceName = "EDIT_EXPEDIENTE_ORIGINAL_VALIDATION_MESSAGE",
  74.             ErrorMessageResourceType = typeof(Resources.Talonario))
  75.     ]
  76.     public string SelectedFileListItem { get; set; } // Expediente seleccionado
  77.     [
  78.         Display(
  79.             Name = "EDIT_NUMERO_NOMBRE_COMPLETO_PRODUCTOR_LABEL",
  80.             ResourceType = typeof(Resources.Talonario))
  81.     ]
  82.     [
  83.         Required(
  84.             ErrorMessageResourceName = "EDIT_NUMERO_NOMBRE_COMPLETO_PRODUCTOR_VALIDATION_MESSAGE",
  85.             ErrorMessageResourceType = typeof(Resources.Talonario))
  86.     ]
  87.     public List<SelectListItem> NumberProducingAndFullNameDropdownList { get; set; }
  88.     public SelectList NumberProducingAndFullName { get; set; }
  89.     public SelectListItem SelectedNumberProducingAndFullName { get; set; }
  90.     public string SelectedNumberProducingAndFullNameText { get; set; }
  91.     public List<SelectListItem> TrackerQuantityDropdownList { get; set; } // Cantidad guías
  92.     [
  93.         Display(
  94.             Name = "EDIT_CANTIDAD_GUIAS_LABEL",
  95.             ResourceType = typeof(Resources.Talonario))
  96.     ]
  97.     [
  98.         Required(
  99.             ErrorMessageResourceName = "EDIT_CANTIDAD_GUIAS_VALIDATION_MESSAGE",
  100.             ErrorMessageResourceType = typeof(Resources.Talonario))
  101.     ]
  102.     public string TrackerQuantityListItem { get; set; } // Seleccionado
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement