public void GetAllShowingsTest()
        {
            IList <Showing> showings = showingDAO.GetAllShowings();
            int             actual   = showings.Count;

            Assert.IsTrue(actual > 0);
        }
 public IActionResult GetAllShowings()
 {
     return(new JsonResult(showingDAO.GetAllShowings()));
 }