public JsonResult Delete(DAL.DALPROPERTIES.Employeereg Emp)
 {
     return(Json(ob.DeleteEmployee(Emp), JsonRequestBehavior.AllowGet));
 }
        public JsonResult Update(DAL.DALPROPERTIES.Employeereg Employe)


        {
            return(Json(ob.Update(Employe), JsonRequestBehavior.AllowGet));
        }
 public JsonResult AddEmployee(DAL.DALPROPERTIES.Employeereg emp)
 {
     return(Json(ob.Add(emp), JsonRequestBehavior.AllowGet));
 }