using System; using System.Collections.Generic; using WebApplication3.Clases; #nullable disable namespace WebApplication3.Models { public partial class Pozo { public uint Id { get; set; } public string Nombre { get; set; } public uint? IdAquifero { get; set; } public string Minimo { get; set; } public string Maximo { get; set; } public string Latitud { get; set; } public string Longitud { get; set; } public uint? IdSimulacion { get; set; } public string X { get; set; } public string Y { get; set; } public string Z { get; set; } public string Prof { get; set; } public string ScreenTop { get; set; } public string ScreenBot { get; set; } public uint Active { get; set; } public Pozo Copy(uint? idSimulacion) { Pozo pozo = new Pozo(); pozo.IdAquifero = this.IdAquifero; pozo.IdSimulacion = idSimulacion; pozo.Latitud = this.Latitud; pozo.Longitud = this.Longitud; pozo.Maximo = this.Maximo; pozo.Minimo = this.Minimo; pozo.Nombre = this.Nombre; pozo.Active = this.Active; return pozo; } } }