public void Test_Get_All_Student()
        {
            List <StudentVM> student2 = new List <StudentVM>();

            //Act
            student2 = student.GetAllStudent();

            //Assert
            Assert.AreEqual(student2.Count, 1);
        }
        public ActionResult Index()
        {
            List <StudentVM> s = studentAppService.GetAllStudent();

            return(View(s));
        }