public PartialViewResult LostFoundsListTable()
        {
            lostFound = new LostFoundsModel();
            lostFound.CommunityID = myCommunityID;

            lostFoundsDAL = new LostFoundsDAL();
            ViewBag.LostFoundsList = lostFoundsDAL.LostFoundList(lostFound);
            return PartialView("Partials/LostFounds/LostFoundsListTable");
        }
        public ActionResult LostFoundDetails(String lostfoundid)
        {
            lostFound = new LostFoundsModel();
            lostFound.CommunityID = myCommunityID;
            lostFound.LostFoundID = Convert.ToInt64(lostfoundid.ToString());

            lostFoundsDAL = new LostFoundsDAL();
            ViewBag.LostFoundDetails = lostFoundsDAL.LostFoundDetails(lostFound);

            return View();
        }
        public ActionResult LostFounds()
        {
            lostFound = new LostFoundsModel();
            lostFound.CommunityID = myCommunityID;

            lostFoundsDAL = new LostFoundsDAL();
            ViewBag.LostFoundsList = lostFoundsDAL.LostFoundList(lostFound);
            return View("LostFounds");
        }
        public ActionResult LostFoundsList(String communityid)
        {
            lostFound = new LostFoundsModel();
            lostFound.CommunityID = outCommunityID;

            lostFoundsDAL = new LostFoundsDAL();
            ViewBag.LostFoundsList = lostFoundsDAL.LostFoundList(lostFound);
            return View("Partials/LostFounds/LostFoundsList");
        }