Ejemplo n.º 1
0
        public async Task UpdateToDb(ProductAttribute productAttribute)
        {
            var result = await _repository.Update(productAttribute);

            if (!result)
            {
                throw new MessageException(ResourceKey.Customer_NotChanged);
            }
        }