public void AddSaleOrderItem(IOrder order, int productId, int quantity)
 {
     order.AddProductLineSaleItem(productRepo.GetProduct(productId), quantity);
 }