Shuxia Ning
2024-07-17 fd681339c81201ed6fb3303647ecab89e3e6c0c1
IStation.Dto/02-web/02-hydraulic-model/01-epanet/Pump.cs
@@ -7,22 +7,22 @@
    public class Pump : Link
    {
        public Pump()
        {
          //  this.Status = StatusType.OPEN;
        //    this.LinkType = LinkType.Pump;
        {
            //  this.Status = StatusType.OPEN;
            //    this.LinkType = LinkType.Pump;
        }
        public Pump(Pump rhs)
        {
            this.Id = rhs.Id;
         //   this.LinkType = rhs.LinkType;
         //   this.Diameter = rhs.Diameter;
         //   this.Lenght = rhs.Lenght;
        {
            this.Id = rhs.Id;
            //   this.LinkType = rhs.LinkType;
            //   this.Diameter = rhs.Diameter;
            //   this.Lenght = rhs.Lenght;
            this.FirstNode = rhs.FirstNode;
            this.SecondNode = rhs.SecondNode;
          //  this.Status = rhs.Status;
         //   this.Vertices = rhs.Vertices?.ToList();
            //  this.Status = rhs.Status;
            //   this.Vertices = rhs.Vertices?.ToList();
        }
    }
    }
}