Exemple #1
0
 public SharedUnit(SharedUnitId id,
                   string name,
                   string dictionaryName)
 {
     if (id == null)
     {
         throw new ArgumentNullException("id");
     }
     this.id             = id;
     this.name           = name;
     this.dictionaryName = dictionaryName;
 }
Exemple #2
0
 public UnitId(PeriodId periodId, SharedUnitId sharedUnitId)
 {
     this.periodId     = periodId;
     this.sharedUnitId = sharedUnitId;
 }