You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm trying to put all my logic in the domain models so I don't have a anemic domain models.
Here is an example
CommandHandler () {
paymentReferenceId = _infastructure_payment.process($12);
var appt = new Appt(startDate,endDate, paymentReferenceId);
Where does this go? If I leave it in the command handler, then I am not really encapsulating my logic to create a new appointment.
}
Beta Was this translation helpful? Give feedback.
All reactions