/// <summary>
        /// Action method to display a button that when clicked will generate the mess bill
        /// </summary>
        /// <returns>view</returns>
        public ActionResult GenerateMessBill()
        {
            TransactionHelper helper = new TransactionHelper();

            ViewBag.canGenerateMessBill = helper.CanGenerateMessBill();

            return(View());
        }