blob: 087c13b1d49cf643477d3e8f3569c9e9ffaae748 [file] [log] [blame]
2230111590135d72025-06-03 17:11:40 +08001package com.example.myproject.service;
2
3import com.example.myproject.entity.Promotion;
4import com.example.myproject.dto.PromotionCreateDTO;
5import java.util.List;
6
7public interface PromotionService {
8 Promotion createPromotion(PromotionCreateDTO promotionDTO);
9
10 List<Promotion> getAllActivePromotions();
11
12 Promotion getPromotionById(Long promotionId);
13
14 void deletePromotion(Long promotionId);
15
16 double getCurrentDiscount(Long torrentId);
17}