public async Task CanUpdateAsync()
        {
            Data.Add(_testVendor.DeepClone());
            _testVendor.Discounts = new List <DiscountShortDto>();

            await _controller.UpdateAsync(_testVendor);

            Assert.Empty(Data.Single().Discounts);
        }