Skip to content

Instantly share code, notes, and snippets.

View sbiaudet's full-sized avatar

Sébastien BIAUDET sbiaudet

View GitHub Profile
var async = require('async')
, _ = require('lodash');
module.exports = [
require('cqrs-domain').defineCommand({
name: 'addInvoiceLine',
payload: 'payload'
}, function (data, aggregate) {
aggregate.apply('invoiceLineAdded', data); //1 - 1
calculateTotal(aggregate) //2 - 3