-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(bill): 조회시 사용되는 컨트롤러와 포트 통합
- Loading branch information
Showing
9 changed files
with
56 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 0 additions & 37 deletions
37
...java/com/connect/accountApp/domain/bill/adapter/in/web/controller/GetBillsController.java
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
...ect/accountApp/domain/bill/adapter/in/web/controller/GetRecentBillCategoryController.java
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
src/main/java/com/connect/accountApp/domain/bill/application/port/in/GetBillUseCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
package com.connect.accountApp.domain.bill.application.port.in; | ||
|
||
import com.connect.accountApp.domain.bill.application.port.command.BillCommand; | ||
import com.connect.accountApp.domain.bill.application.port.command.RecentBillCategoryCommand; | ||
import com.connect.accountApp.domain.bill.domain.model.Bill; | ||
import com.connect.accountApp.domain.bill.domain.model.BillCategory; | ||
import java.util.List; | ||
|
||
public interface GetBillUseCase { | ||
|
||
Bill getBill(Long billId); | ||
|
||
List<BillCommand> getBills(String userEmail, BillCategory billCategory); | ||
|
||
List<RecentBillCategoryCommand> getRecentBillCategory(String userEmail); | ||
} |
11 changes: 0 additions & 11 deletions
11
src/main/java/com/connect/accountApp/domain/bill/application/port/in/GetBillsUseCase.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
.../com/connect/accountApp/domain/bill/application/port/in/GetRecentBillCategoryUseCase.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 0 additions & 29 deletions
29
src/main/java/com/connect/accountApp/domain/bill/application/service/GetBillsService.java
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
.../com/connect/accountApp/domain/bill/application/service/GetRecentBillCategoryService.java
This file was deleted.
Oops, something went wrong.