コード例 #1
0
ファイル: Model.cs プロジェクト: stephen-czetty/UseCaseMaker
 public Model(String name, String prefix, Int32 id, Package owner)
     : base(name,prefix,id,owner)
 {
     this.glossary = new GlossaryItems(this);
     this.stakeholders = new Stakeholders(this);
     this.creationDate = DateTime.Now;
 }
コード例 #2
0
ファイル: Model.cs プロジェクト: stephen-czetty/UseCaseMaker
 public Model()
     : base()
 {
     this.glossary = new GlossaryItems(this);
     this.stakeholders = new Stakeholders(this);
     this.creationDate = DateTime.Now;
 }
コード例 #3
0
 public Model(String name, String prefix, Int32 id, Package owner) : base(name, prefix, id, owner)
 {
     this.glossary     = new GlossaryItems(this);
     this.stakeholders = new Stakeholders(this);
     this.creationDate = DateTime.Now;
 }
コード例 #4
0
 public Model() : base()
 {
     this.glossary     = new GlossaryItems(this);
     this.stakeholders = new Stakeholders(this);
     this.creationDate = DateTime.Now;
 }