public bool Remove(Exam exam)
        {
            bool isDelete = _examRepository.Remove(exam);

            return(isDelete);
        }