SchoolSystem.Class.Class C# (CSharp) Method

Class() public method

public Class ( string textIdentifier ) : System
textIdentifier string
return System
        public Class(string textIdentifier)
        {
            this.TextIdentifier = textIdentifier;
            this.Teachers = new List<Teacher>();
            this.Students = new List<Student>();
        }