/// <summary>public default constructor, usefull only for property pages</summary> public AtomPerson() { this.type = AtomPersonType.Author; }
////////////////////////////////////////////////////////////////////// /// <summary>Constructor taking a type to indicate whether person is author or contributor.</summary> /// <param name="type">indicates if author or contributor</param> ////////////////////////////////////////////////////////////////////// public AtomPerson(AtomPersonType type) { this.type = type; }
///////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// /// <summary>Constructor taking a type to indicate whether person is author or contributor, plus the person's name</summary> /// <param name="type">indicates if author or contributor</param> /// <param name="name">person's name</param> ////////////////////////////////////////////////////////////////////// public AtomPerson(AtomPersonType type, string name) : this(type) { this.name = name; }
////////////////////////////////////////////////////////////////////// /// <summary>Constructor taking a type to indicate whether person is author or contributor.</summary> /// <param name="type">indicates if author or contributor</param> ////////////////////////////////////////////////////////////////////// public AtomPerson(AtomPersonType type) { _type = type; }
/// <summary>public default constructor, usefull only for property pages</summary> public AtomPerson() { _type = AtomPersonType.Author; }