Skip to content

Instantly share code, notes, and snippets.

@nattaphonjeamjit
Created April 8, 2018 16:54
Show Gist options
  • Save nattaphonjeamjit/460dffd81b9f2504c6ea83282577e228 to your computer and use it in GitHub Desktop.
Save nattaphonjeamjit/460dffd81b9f2504c6ea83282577e228 to your computer and use it in GitHub Desktop.
@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