예제 #1
0
        public string Delete(int id)
        {
            try
            {
                if (id == 0)
                {
                    return("Mã không tồn tại!");
                }

                if (_staffBusiness.StatusDelete(id))
                {
                    _staffBusiness.Save();
                }
                return("");
            }
            catch (Exception)
            {
                return("Đã xảy ra lỗi!");
            }
        }