Beispiel #1
0
 internal void CopyContentTo(RoomRelatedEducationItem target, Func <String, bool> onFixedValueChangingCallback = null)
 {
     target.Uid                    = this.Uid;
     target.InventoryNumber        = this.InventoryNumber;
     target.Title                  = this.Title;
     target.DedicatedToSubjectName = this.DedicatedToSubjectName;
     target.RoomUid                = this.RoomUid;
 }
Beispiel #2
0
 internal void CopyContentFrom(RoomRelatedEducationItem source, Func <String, bool> onFixedValueChangingCallback = null)
 {
     this.Uid                    = source.Uid;
     this.InventoryNumber        = source.InventoryNumber;
     this.Title                  = source.Title;
     this.DedicatedToSubjectName = source.DedicatedToSubjectName;
     this.RoomUid                = source.RoomUid;
 }