public ItemData(IItemDataTyped typedData, ItemDataCommon commonData)
 {
     if (typedData == null)
     {
         throw new ArgumentNullException("typedData");
     }
     Typed  = typedData;
     Common = commonData;
 }
コード例 #2
0
ファイル: ItemData.cs プロジェクト: bcl-lab-apps/EMRGENE
 public ItemData(IItemDataTyped typedData, ItemDataCommon commonData)
 {
     if (typedData == null)
     {
         throw new ArgumentNullException("typedData");
     }
     Typed = typedData;
     Common = commonData;
 }