Esempio n. 1
0
        public ActionResult EditEmployee(int Id)
        {
            var customer = serviceObject.GetEmployeeById(Id);

            if (customer == null)
            {
                return(HttpNotFound());
            }
            return(View("BtnAction", customer));
        }