Esempio n. 1
0
        public ActionResult DeleteLeaper(int id)
        {
            _leaperRepository.DeleteLeaper(id);

            return(Ok());
        }
 public ActionResult DeleteLeaper(int id)
 {
     _leaperRepository.DeleteLeaper(id);
     return(Ok($"Leaper with id {id} is deleted"));
 }