Exemple #1
0
 public EntityTemplate(string name, EntityTemplateFactory factory) : this(factory) {
     this.Name = name;
 }
Exemple #2
0
		public EntityTemplate(string name, EntityTemplateFactory factory) : this(factory) {
			this.Name = name;
		}
Exemple #3
0
 public EntityTemplate(EntityTemplateFactory factory) : this()
 {
     this.ID = factory.AllocateID();
 }
Exemple #4
0
		public EntityTemplate(EntityTemplateFactory factory) : this() {
			this.ID = factory.AllocateID();
		}