public ActionResult Index()
 {
     return(View(BookingRepo.GetBookings()));
 }
コード例 #2
0
 public void TestCreateBookingRepo()
 {
     brT.ClearAllBookings();
     brT.AddBookingToList(b1);
     Assert.IsTrue(0 < brT.GetBookings().Count);
 }