JIHYEON-PF / fc-msa-order

0 stars 0 forks source link

주문 프로젝트의 파트너에 대한 서비스를 구현 #5

Closed JIHYEON-PF closed 1 year ago

JIHYEON-PF commented 1 year ago

PR 개요

  • 주문 프로젝트의 주요 도메인 중 하나인 파트너의 서비스를 구현

작업 상세내용

  • 파트너 도메인의 비즈니스 로직을 담당하는 서비스를 구현
  • Domain Layer에서는 Interface의 형태로 어떠한 구현을 담당하는지 명세를 작성
  • 세부 구현은 Infrastructure Layer에서 Domain Layer의 Interface를 상속받아서 실행되도록 구현
  • Domain Layer의 서비스 Interface는 Entery Point로서 @Service로 명시
  • Infrastructure의 서비스는 실제 구현체임을 명시하기 위해 @Component로 선언
  • 프로젝트에서 공통적으로 사용될 BusinessException을 구현
  • common.exception

This referenced #3 Parent branch is feature/partner