Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. public class DadoDoItemDeProcessoDto
  2. {
  3. public int DadoDoItemDeProcessoId { get; set; }
  4. public decimal Valor { get; set; }
  5. public decimal ValorAcumulado { get; set; }
  6. public DateTime MesDeReferencia { get; set; }
  7. public int Hora { get { return MesDeReferencia.Hour; } }
  8. public int Minuto { get { return MesDeReferencia.Minute; } }
  9. public int ItemDeProcessoId { get; set; }
  10. public string ItemDeProcessoNome { get; set; }
  11. public int ItemDeProcessoCodigo { get; set; }
  12. public string ItemDeProcessoUnidadeDeMedida { get; set; }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement