コード例 #1
0
ファイル: Reference.cs プロジェクト: jwh5293/Composer
 public void AddToStaffgroups(Staffgroup staffgroup)
 {
     base.AddObject("Staffgroups", staffgroup);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: jwh5293/Composer
 public static Staffgroup CreateStaffgroup(global::System.Guid ID, global::System.Guid composition_Id, int sequence, Audit audit, short index)
 {
     Staffgroup staffgroup = new Staffgroup();
     staffgroup.Id = ID;
     staffgroup.Composition_Id = composition_Id;
     staffgroup.Sequence = sequence;
     if ((audit == null))
     {
         throw new global::System.ArgumentNullException("audit");
     }
     staffgroup.Audit = audit;
     staffgroup.Index = index;
     return staffgroup;
 }