public MetsMetadataReference(string reference, string id, string mimetype, string label, string xptr, MetsLocatorType loctype, string otherloctype, MetsMetadataType mdtype, string othermdtype) { this.id = id; this.mimetype = mimetype; this.label = label; this.xptr = xptr; this.loctype = loctype.ToString().ToUpper(); this.otherloctype = otherloctype; this.mdtype = mdtype.ToString().ToUpper(); this.othermdtype = othermdtype; this.reference = reference; }
public MetsXLinkElement(string id, string label, MetsLocatorType loctype, string otherloctype, string href, string role, string arcrole, string title, string show, string actuate) { this.id = id; this.label = label; this.loctype = loctype.ToString().ToUpper(); this.otherloctype = otherloctype; this.href = href; this.role = role; this.arcrole = arcrole; this.title = title; this.show = show; this.actuate = actuate; }