public void Save()
        {
            var movement = new ProductMovement
            {
                Id           = Guid.NewGuid(),
                ProductId    = Product.Id,
                DateTime     = DateTimeOffset.Now,
                MovementType = ProductMovementType.Receipt,
                Quantity     = Quantity
            };

            ProductService.AddMovement(movement);

            Close();
        }