Ejemplo n.º 1
0
        public string GiaoVien_delete(GiaoVienModel m)
        {
            string dt;

            try
            {
                var sp_result = db.GiaoVien_delete(int.Parse(m.ID));
                dt = "Xoá thành công";
            }
            catch (Exception e)
            {
                dt = "Đã có lỗi tại GiaoVien_delete" + e;
            }
            return(dt);
        }