TSPozo.cs 895B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace WebApplication3.Models
  5. {
  6. public partial class TsPozo
  7. {
  8. public uint Id { get; set; }
  9. public uint? IdPozo { get; set; }
  10. public string MarcaTiempo { get; set; }
  11. public string Valor { get; set; }
  12. public string InfoComplementaria { get; set; }
  13. public string DateIn { get; set; }
  14. public string DateEnd { get; set; }
  15. public string MarcaTiempoEnd { get; set; }
  16. public TsPozo Copy(uint? pozoId)
  17. {
  18. TsPozo tsPozo = new TsPozo();
  19. tsPozo.IdPozo = pozoId;
  20. tsPozo.Valor = this.Valor;
  21. tsPozo.MarcaTiempo = this.MarcaTiempo;
  22. tsPozo.MarcaTiempoEnd = this.MarcaTiempoEnd;
  23. tsPozo.InfoComplementaria = this.InfoComplementaria;
  24. return tsPozo;
  25. }
  26. }
  27. }