Esempio n. 1
0
 public Boolean Update(NhanVien sx)
 {
     return(db.Update(sx));
 }
Esempio n. 2
0
        // PUT api/<controller>/5
        public IHttpActionResult Put(int id, [FromBody] NhanVien nv)
        {
            NhanVien resNV = NhanVienModel.Update(id, nv);

            return(Ok(resNV));
        }