Pozo.cs 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using WebApplication3.Clases;
  4. #nullable disable
  5. namespace WebApplication3.Models
  6. {
  7. public partial class Pozo
  8. {
  9. public uint Id { get; set; }
  10. public string Nombre { get; set; }
  11. public uint? IdAquifero { get; set; }
  12. public string Minimo { get; set; }
  13. public string Maximo { get; set; }
  14. public string Latitud { get; set; }
  15. public string Longitud { get; set; }
  16. public uint? IdSimulacion { get; set; }
  17. public string X { get; set; }
  18. public string Y { get; set; }
  19. public string Z { get; set; }
  20. public string Prof { get; set; }
  21. public string ScreenTop { get; set; }
  22. public string ScreenBot { get; set; }
  23. public Pozo Copy(uint? idSimulacion)
  24. {
  25. Pozo pozo = new Pozo();
  26. pozo.IdAquifero = this.IdAquifero;
  27. pozo.IdSimulacion = idSimulacion;
  28. pozo.Latitud = this.Latitud;
  29. pozo.Longitud = this.Longitud;
  30. pozo.Maximo = this.Maximo;
  31. pozo.Minimo = this.Minimo;
  32. pozo.Nombre = this.Nombre;
  33. return pozo;
  34. }
  35. }
  36. }