Prizm.Domain.Entity.Mill.Pipe.Pipe C# (CSharp) Method

Pipe() public method

public Pipe ( ) : System
return System
        public Pipe()
        {
            this.Welds = new List<Weld>();
            this.Coats = new List<Coat>();
            this.Spools = new List<Spool>();
            this.PipeTestResult = new List<PipeTestResult>();

            this.Plate = new Plate() { Pipe = this };
        }