示例#1
0
        public void GetAll_DatabaseEmptyAtFirst_0()
        {
            //Arrange, Act
            int result = Donor.GetAll().Count;

            //Assert
            Assert.AreEqual(0, result);
        }
        public ActionResult DonorList()
        {
            List <Donor> allDonors = Donor.GetAll();

            return(View(allDonors));
        }