using System; using System.Collections.Generic; #nullable disable namespace WebApplication3.Models { public partial class TsPozo { public uint Id { get; set; } public uint? IdPozo { get; set; } public string MarcaTiempo { get; set; } public string Valor { get; set; } public string InfoComplementaria { get; set; } public string DateIn { get; set; } public string DateEnd { get; set; } public string MarcaTiempoEnd { get; set; } public TsPozo Copy(uint? pozoId) { TsPozo tsPozo = new TsPozo(); tsPozo.IdPozo = pozoId; tsPozo.Valor = this.Valor; tsPozo.MarcaTiempo = this.MarcaTiempo; tsPozo.MarcaTiempoEnd = this.MarcaTiempoEnd; tsPozo.InfoComplementaria = this.InfoComplementaria; return tsPozo; } } }