public void GetStudentStatusReport()
        {
            IStudentReportStatusService reportStatus = new StudentReportStatusService();
            bool studentReporStatus = reportStatus.GetStudentStatusReport();

            if (studentReporStatus)
            {
                ViewData["studentReportStatus"] = "Currently student report status is enable.";
                report_Status = true;
            }
            else
            {
                ViewData["studentReportStatus"] = "Currently student report status is disable.";
                report_Status = false;
            }
        }
        public void Get_Student_Report_Status_From_Serivce()
        {
            IStudentReportStatusService reportStatus = new StudentReportStatusService();

            Assert.IsNotNull(reportStatus.GetStudentStatusReport());
        }