コード例 #1
0
        } // Edit

        // Удаление элемента AJAX
        public async Task <bool> DeleteAJAX(int id, string connectionId)
        {
            // Удаление элемента из базы
            try
            {
                // Кол-во заявок и предложений по удаляемому станку
                var requisitionsCount = await _machineRepository.GetRequisitionsCount(id);

                var proposalsCount = await _machineRepository.GetProposalsCount(id);

                await _machineRepository.RemoveMachine(id);

                // Уменьшение кол-ва прочитанных новостей
                await _readedNoticeRepository.DecrementUsersReadedNoticesCounter(requisitionsCount + proposalsCount);

                // Проверка зависимых элементов
                await _machineTypeRepository.CheckEmptyGroups();

                await _hub.Clients.All.SendAsync("Success", Messages.successDeleteMessage);

                return(true);
            }
            catch {
                await _hub.Clients.Client(connectionId).SendAsync("Error", Messages.deleteErrorMessage);

                return(false);
            } // try-catch
        }     // DeleteAJAX
コード例 #2
0
        } // SearchAJAX

        // Удаление сообщения AJAX
        public async Task <bool> DeleteAJAX(int id, string connectionId)
        {
            try
            {
                // Удаление сообщения
                await _messageRepository.RemoveMessage(id);

                await _hub.Clients.All.SendAsync("Success", Messages.successDeleteMessage);

                // Декрементирование счетчика новостей для всех пользователей
                await _readedNoticeRepository.DecrementUsersReadedNoticesCounter();

                return(true);
            } catch {
                await _hub.Clients.Client(connectionId).SendAsync("Error", Messages.deleteErrorMessage);

                return(false);
            } // try-catch
        }     // DeleteAJAX
コード例 #3
0
        } // Edit

        // Удаление элемента AJAX
        public async Task <ActionResult> DeleteAJAX(int id, bool details, string connectionId, string searchString, DateTime?startDate, DateTime?endDate, bool ownRecords)
        {
            // Удаление элемента из базы
            try
            {
                await _requisitionRepository.RemoveRequisition(id);

                // Декрементирование счетчика новостей для всех пользователей
                await _readedNoticeRepository.DecrementUsersReadedNoticesCounter();

                await _hub.Clients.Client(connectionId).SendAsync("Success", Messages.successDeleteMessage);
            }
            catch { await _hub.Clients.Client(connectionId).SendAsync("Error", Messages.deleteErrorMessage); } // try-catch

            if (details)
            {
                return(RedirectToAction("Index", new { ajaxLoad = true }));
            }
            return(PartialView("_Table", await _requisitionRepository.GetFilteredRequisitions(searchString, startDate, endDate, ownRecords, User.Identity.Name)));
        } // DeleteAJAX