Commit 6c65b136 authored by lemin's avatar lemin

ccc

parent 21d7cea0
package com.showcase.synapse.product.command;
package com.showcase.synapse.common.command;
import org.axonframework.modelling.command.TargetAggregateIdentifier;
......
package com.showcase.synapse.product.command;
package com.showcase.synapse.common.command;
import lombok.AllArgsConstructor;
import lombok.Getter;
......
package com.showcase.synapse.product.command;
package com.showcase.synapse.common.command;
import lombok.AllArgsConstructor;
import lombok.Getter;
......
......@@ -7,7 +7,7 @@ import org.axonframework.eventsourcing.EventSourcingHandler;
import org.axonframework.modelling.command.AggregateIdentifier;
import org.axonframework.spring.stereotype.Aggregate;
import com.showcase.synapse.product.command.CreateChannelCommand;
import com.showcase.synapse.common.command.CreateChannelCommand;
import com.showcase.synapse.product.event.ChannelCreatedEvent;
import lombok.NoArgsConstructor;
......
......@@ -7,8 +7,8 @@ import org.axonframework.eventsourcing.EventSourcingHandler;
import org.axonframework.modelling.command.AggregateIdentifier;
import org.axonframework.spring.stereotype.Aggregate;
import com.showcase.synapse.product.command.ChangeQuantityCommand;
import com.showcase.synapse.product.command.CreateProductCommand;
import com.showcase.synapse.common.command.ChangeQuantityCommand;
import com.showcase.synapse.common.command.CreateProductCommand;
import com.showcase.synapse.product.event.ProductCreatedEvent;
import com.showcase.synapse.product.event.ProductQuantityChangedEvent;
......
......@@ -10,8 +10,8 @@ import org.axonframework.messaging.responsetypes.ResponseTypes;
import org.axonframework.queryhandling.QueryGateway;
import org.springframework.stereotype.Service;
import com.showcase.synapse.product.command.CreateChannelCommand;
import com.showcase.synapse.product.command.CreateProductCommand;
import com.showcase.synapse.common.command.CreateChannelCommand;
import com.showcase.synapse.common.command.CreateProductCommand;
import com.showcase.synapse.product.entity.ChannelEntity;
import com.showcase.synapse.product.entity.ProductEntity;
import com.showcase.synapse.product.query.GetChannelQuery;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment