Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Design" /> class.
 /// </summary>
 /// <param name="Comment">Comment.</param>
 /// <param name="DesignAsDoc">DesignAsDoc.</param>
 /// <param name="DesignAsXml">DesignAsXml.</param>
 /// <param name="DesignId">DesignId.</param>
 /// <param name="Docs">Docs.</param>
 /// <param name="Id">Id.</param>
 /// <param name="ImplementedSpecificationVersion">ImplementedSpecificationVersion.</param>
 /// <param name="Name">Name.</param>
 /// <param name="OrganizationId">OrganizationId.</param>
 /// <param name="Specifications">Specifications.</param>
 /// <param name="Status">Status.</param>
 /// <param name="Version">Version.</param>
 public Design(string Comment = null, Doc DesignAsDoc = null, Xml DesignAsXml = null, string DesignId = null, List <Doc> Docs = null, long?Id = null, SpecificationTemplate ImplementedSpecificationVersion = null, string Name = null, string OrganizationId = null, List <Specification> Specifications = null, string Status = null, string Version = null)
 {
     this.Comment     = Comment;
     this.DesignAsDoc = DesignAsDoc;
     this.DesignAsXml = DesignAsXml;
     this.DesignId    = DesignId;
     this.Docs        = Docs;
     this.Id          = Id;
     this.ImplementedSpecificationVersion = ImplementedSpecificationVersion;
     this.Name           = Name;
     this.OrganizationId = OrganizationId;
     this.Specifications = Specifications;
     this.Status         = Status;
     this.Version        = Version;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="Specification" /> class.
 /// </summary>
 /// <param name="Comment">Comment.</param>
 /// <param name="Docs">Docs.</param>
 /// <param name="Id">Id.</param>
 /// <param name="ImplementedSpecificationVersion">ImplementedSpecificationVersion.</param>
 /// <param name="Keywords">Keywords.</param>
 /// <param name="Name">Name.</param>
 /// <param name="OrganizationId">OrganizationId.</param>
 /// <param name="SpecAsDoc">SpecAsDoc.</param>
 /// <param name="SpecAsXml">SpecAsXml.</param>
 /// <param name="SpecificationId">SpecificationId.</param>
 /// <param name="Status">Status.</param>
 /// <param name="Version">Version.</param>
 public Specification(string Comment = null, List <Doc> Docs = null, long?Id = null, SpecificationTemplate ImplementedSpecificationVersion = null, string Keywords = null, string Name = null, string OrganizationId = null, Doc SpecAsDoc = null, Xml SpecAsXml = null, string SpecificationId = null, string Status = null, string Version = null)
 {
     this.Comment = Comment;
     this.Docs    = Docs;
     this.Id      = Id;
     this.ImplementedSpecificationVersion = ImplementedSpecificationVersion;
     this.Keywords        = Keywords;
     this.Name            = Name;
     this.OrganizationId  = OrganizationId;
     this.SpecAsDoc       = SpecAsDoc;
     this.SpecAsXml       = SpecAsXml;
     this.SpecificationId = SpecificationId;
     this.Status          = Status;
     this.Version         = Version;
 }