Guest User

Untitled

a guest
Apr 25th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public ActionResult GetData()
  2. {
  3. using (MVCPRACEntities db = new MVCPRACEntities())
  4. {
  5. List<AMSFR_APRR_INVOICE_HIST2> emplist = db.AMSFR_APRR_INVOICE_HIST2.ToList<AMSFR_APRR_INVOICE_HIST2>();
  6. return Json(new { data = emplist }, JsonRequestBehavior.AllowGet);
  7. }
  8. }
Add Comment
Please, Sign In to add comment