public bool CancelStudentInscription(Inscription inscription)
        {
            MPPSubject mapper = new MPPSubject();

            try
            {
                mapper.CancelStudentInscription(inscription);
                return(true);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
                return(false);
            }
        }