コード例 #1
0
        public ActionResult OwnerTCKView()
        {
            int         a_id = Convert.ToInt32(Session["ApartmentID"]);
            TicketModel lstTcount;

            try
            {
                lstTcount = objgetTicket.getTicketCout(a_id);
                return(View(lstTcount));
            }
            catch (Exception ex)
            {
                log.Error(ex);
                return(Json("Something went wrong..Try after some Time", JsonRequestBehavior.AllowGet));
            }
        }