Exemple #1
0
        public MetsAgent(string id, MetsAgentRole role, string otherrole, MetsAgentType type, string othertype, string name, string[] notes)
        {
            this.id        = id;
            this.role      = role.ToString().ToUpper();
            this.otherrole = otherrole;
            this.type      = type.ToString().ToUpper();
            this.othertype = othertype;

            // Elements
            this.name  = name;
            this.notes = notes;
        }
Exemple #2
0
        public MetsAgent(string id, MetsAgentRole role, string otherrole, MetsAgentType type, string othertype, string name, string[] notes) {
            this.id = id;
            this.role = role.ToString().ToUpper();
            this.otherrole = otherrole;
            this.type = type.ToString().ToUpper();
            this.othertype = othertype;

            // Elements
            this.name = name;
            this.notes = notes;
        }