Created
April 8, 2018 16:54
-
-
Save nattaphonjeamjit/460dffd81b9f2504c6ea83282577e228 to your computer and use it in GitHub Desktop.
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
@RestController | |
public class PromotionController { | |
private final PromotionService promotionService; | |
@Autowired | |
public PromotionController(PromotionService promotionService){ | |
this.promotionService = promotionService; | |
} | |
@PostMapping(value = "/promotions") | |
public void perform() { | |
this.promotionService(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment