コード例 #1
0
        public IActionResult Absent(int eventId, int donorId)
        {
            _eventService.Absent(eventId, donorId);    // Absent an invited donor

            return(RedirectToAction("Manage", "Events", new { id = eventId }));
        }