Exemple #1
0
 internal void ClearWasteCompositions()
 {
     if (WasteCompositionCollection != null)
     {
         WasteCompositionCollection.Clear();
     }
 }
Exemple #2
0
        internal void SetWasteComposition(WasteComposition wasteComposition)
        {
            if (WasteCompositionCollection == null)
            {
                throw new InvalidOperationException("Waste Composition cannot be null");
            }

            WasteCompositionCollection.Add(wasteComposition);
        }