Exemple #1
0
		public Subject(
			Subjects aggregateloopback_ref_in, 
			string idSubject_in
		) : base (
			aggregateloopback_ref_in
		) {
			//#region ClaSSe...
			idsubject_ = idSubject_in;
			idsubject_parent_ = string.Empty;
			name_ = string.Empty;
			description_ = string.Empty;
			//---
			documents_ = new Documents(this/*, this*/);
			//#endregion
		}
Exemple #2
0
		public DocMetadata(
		) : base (
			null
		) {
			//#region ClaSSe...
			documentationname_ = string.Empty;
			projecturl_ = string.Empty;
			copyrighttext_ = string.Empty;
			feedbackemailaddress_ = string.Empty;
			version_ = string.Empty;
			date_ = string.Empty;
			//---
			configs_ = new Configs(this/*, this*/);
			subjects_ = new Subjects(this/*, this*/);
			authors_ = new Authors(this/*, this*/);
			links_ = new Links(this/*, this*/);
			faqsubjects_ = new FAQSubjects(this/*, this*/);
			codesamples_ = new CodeSamples(this/*, this*/);
			//#endregion
		}
Exemple #3
0
 public DocMetadata(
     ) : base(
         null
         )
 {
     //#region ClaSSe...
     documentationname_    = string.Empty;
     projecturl_           = string.Empty;
     copyrighttext_        = string.Empty;
     feedbackemailaddress_ = string.Empty;
     version_ = string.Empty;
     date_    = string.Empty;
     //---
     configs_     = new Configs(this /*, this*/);
     subjects_    = new Subjects(this /*, this*/);
     authors_     = new Authors(this /*, this*/);
     links_       = new Links(this /*, this*/);
     faqsubjects_ = new FAQSubjects(this /*, this*/);
     codesamples_ = new CodeSamples(this /*, this*/);
     //#endregion
 }