public ActionResult Delete(int id)
        {
            try
            {
                if (_service.Remove(id))
                {
                    return(Ok());
                }

                return(BadRequest());
            }
            catch (ServiceException e)
            {
                return(StatusCode(500, e.Message));
            }
        }
        public ActionResult Delete(int id, IFormCollection collection)
        {
            SalaModel salaModel = _salaService.GetById(id);

            try
            {
                if (_salaParticularService.Remove(id))
                {
                    TempData["mensagemSucesso"] = "Responsável desassociado com sucesso!.";
                }
                else
                {
                    TempData["mensagemErro"] = "Houve um problema ao desassociar responsável, tente novamente em alguns minutos!.";
                }
            }
            catch (ServiceException se)
            {
                TempData["mensagemErro"] = se.Message;
            }

            return(RedirectToAction(nameof(Index)));
        }