Exemplo n.º 1
0
        public IActionResult DeleteInstructor(int campBatchId, int instructorId, int instructorRoleId)
        {
            Svc.RemoveInstructorCampBatch(campBatchId, instructorId, instructorRoleId);
            Svc.Commit();

            return(RedirectToAction("Instructors", new { @id = campBatchId }));
        }