Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

쿠폰 코드를 입력해 쿠폰을 받는다. #22

Conversation

this-is-spear
Copy link
Owner

@this-is-spear this-is-spear commented May 23, 2024

Summary

회원은 쿠폰 코드를 입력해 선물을 등록합니다.

Description

쿠폰 등록 API는 다음과 같습니다.

sequenceDiagram
 actor Sender
 participant GiftCouponMessageController
 participant EnrollCouponByMessageUseCase

Sender ->> GiftCouponMessageController: enrollGiftCoupon(coupon �code)
GiftCouponMessageController ->> EnrollCouponByMessageUseCase: enroll(member id, coupon �code)
EnrollCouponByMessageUseCase ->> MemberAdapter: findMember
MemberAdapter ->> EnrollCouponByMessageUseCase: 
EnrollCouponByMessageUseCase ->> LoadGiftCouponStatePort: findGiftCoupon
LoadGiftCouponStatePort ->> EnrollCouponByMessageUseCase: 
EnrollCouponByMessageUseCase ->> EnrollCouponByMessageUseCase: isUsed
EnrollCouponByMessageUseCase ->> EnrollCouponByMessageUseCase: member receive coupon
EnrollCouponByMessageUseCase ->> UpdateMemberStatePort: update
UpdateMemberStatePort ->> EnrollCouponByMessageUseCase: 

EnrollCouponByMessageUseCase ->> GiftCouponMessageController: 
GiftCouponMessageController ->> Sender: 

Loading

@this-is-spear this-is-spear merged commit b9e3fce into main May 23, 2024
3 checks passed
@this-is-spear this-is-spear deleted the 5-전화번호를-입력해-쿠폰을-나눠줄-수-있게-하고-싶음-2 branch June 4, 2024 14:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

전화번호를 입력해 쿠폰을 나눠줄 수 있게 하고 싶음!!
1 participant