public string GiaoVien_update_tt(GiaoVienModel m) { string dt; try { var sp_result = db.GiaoVien_update_tt( int.Parse(m.ID), m.Ma_gv, m.Ten_gv, m.Gioi_tinh, DateTime.Parse(m.Ngay_sinh), m.Email, m.Sđt ); if (sp_result.FirstOrDefault().Updated == 1) { dt = "Cập nhật thông tin thành công"; } else { dt = "Cập nhật thông tin thất bại"; } } catch (Exception e) { dt = "Đã có lỗi tại GiaoVien_update" + e; } return(dt); }