Shuxia Ning
2024-07-17 fd681339c81201ed6fb3303647ecab89e3e6c0c1
IStation.Dto/02-web/02-hydraulic-model/01-epanet/Valve.cs
@@ -7,25 +7,25 @@
    public class Valve : Link
    {
        public Valve()
        {
          //  this.LinkType = LinkType.VALVE;
        {
            //  this.LinkType = LinkType.VALVE;
        }
        public Valve(Valve rhs)
        {
            this.Id = rhs.Id;
           // this.LinkType = rhs.LinkType;
          //  this.Diameter = rhs.Diameter;
          //  this.Lenght = rhs.Lenght;
            // 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.ValveType = rhs.ValveType;
            // this.Status = rhs.Status;
            // this.Vertices = rhs.Vertices?.ToList();
            //  this.ValveType = rhs.ValveType;
        }
       // public ValveType ValveType { get; set; }
        // public ValveType ValveType { get; set; }
    }
}