TSPozo.cs 838B

1234567891011121314151617181920212223242526272829303132
  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.InfoComplementaria = this.InfoComplementaria;
  23. return tsPozo;
  24. }
  25. }
  26. }