feat(app): add manual entry and sharing flows
This commit is contained in:
@@ -5,7 +5,9 @@ abstract class RecommendationRepository {
|
||||
Future<List<RecommendationRecord>> getAllRecommendationRecords();
|
||||
|
||||
/// 특정 맛집의 추천 기록을 가져옵니다
|
||||
Future<List<RecommendationRecord>> getRecommendationsByRestaurantId(String restaurantId);
|
||||
Future<List<RecommendationRecord>> getRecommendationsByRestaurantId(
|
||||
String restaurantId,
|
||||
);
|
||||
|
||||
/// 날짜별 추천 기록을 가져옵니다
|
||||
Future<List<RecommendationRecord>> getRecommendationsByDate(DateTime date);
|
||||
@@ -36,4 +38,4 @@ abstract class RecommendationRepository {
|
||||
|
||||
/// 월별 추천 통계를 가져옵니다
|
||||
Future<Map<String, int>> getMonthlyRecommendationStats(int year, int month);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user