Beispiel #1
0
        public void AddOrUpdateFixedPrice(Nomenclature nomenclature, decimal fixedPrice)
        {
            if (nomenclature == null)
            {
                throw new ArgumentNullException(nameof(nomenclature));
            }

            fixedPriceController.AddOrUpdateFixedPrice(uow, deliveryPoint, nomenclature, fixedPrice);
        }