When crossing domain boundary'sboundaries you can implement a Domain Service to perform the work. ie
OrderService
PlaceOrder(Order o)
{
Billing.CreateBill(order.ItemName, order.amount);
Payments.TakePayment(order.Cardnumber, order.amount);
Accounts.CreateTransaction(order.CustomerId,order.amount);
}