Esempio n. 1
0
        public IActionResult UpdateActiveNotify(int id)
        {
            try
            {
                _notifyPopupRepository.UpdateActiveNotify(id);
            }
            catch (DbUpdateConcurrencyException)
            {
                return(Json(new { success = false }));
            }

            return(Json(new { success = true }));
        }