public IActionResult AddSubject(string SubjectLabel)
 {
     if (SubjectLabel != null)
     {
         _subjectData.AddSubject(SubjectLabel);
     }
     return(RedirectToAction("Listing", "Subjects"));
 }