RailsEventStore/cqrs-es-sample-with-res

View on GitHub
ecommerce/crm/lib/crm/commands/register_customer.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Crm
  class RegisterCustomer < Infra::Command
    attribute :customer_id, Infra::Types::UUID
    attribute :name, Infra::Types::String
    alias aggregate_id customer_id
  end
end