123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
-
- #nullable disable
-
- namespace WebApplication3.Models
- {
- public partial class Recarga
- {
- public uint Id { get; set; }
- public string Nombre { get; set; }
- public uint? IdSimulacion { get; set; }
- public string Latitud { get; set; }
- public string Longitud { get; set; }
- public uint? IdAcuifero { get; set; }
-
- public Recarga Copy(uint? simulacionId)
- {
- Recarga recarga = new Recarga();
- recarga.Nombre = this.Nombre;
- recarga.Latitud = this.Latitud;
- recarga.Longitud = this.Longitud;
- recarga.IdSimulacion = simulacionId;
- recarga.IdAcuifero = this.IdAcuifero;
-
- return recarga;
- }
- }
- }
|