Ejemplo n.º 1
0
        public ActionResult EnteredBy(string tblname, string UserId, string Systemname)
        {
            BusssinessLogic objbal         = new BusssinessLogic();
            var             json           = "";
            var             jsonSerialiser = new JavaScriptSerializer();

            List <EnteredBy> lstenteredBy = new List <EnteredBy>();

            try
            {
                lstenteredBy = objbal.BltbldatawithparamEnteredBy(tblname, UserId, Systemname);
            }
            catch (Exception ex) { }
            return(View(lstenteredBy));
        }