RailsEventStore / ecommerce

Application with CQRS and Event Sourcing built on Rails and Rails Event Store
MIT License
425 stars 72 forks source link

Split Orders::SubmitService into two separate services for admin and client order submission #394

Closed marlena-b closed 2 months ago

marlena-b commented 2 months ago

The current Orders::SubmitService handles order submissions from both the client and admin sides. To improve clarity and maintainability, we need to refactor this into two distinct services: one dedicated to handling order submissions from the client side and another for the admin side.

We also don't want ApplicationService and inheritance.