public ActionResult RemoveEmployee(int id)
        {
            try
            {
                var employee = _employeeAppService.GetEmployeeById(id);
                if (employee == null)
                {
                    AdicionarErroProcessamento("Não foi possível localizar o funcionário pelo id informado.");
                    return(CustomResponse());
                }

                _employeeAppService.RemoveEmployee(employee);
                return(CustomResponse());
            }
            catch (Exception ex)
            {
                MessageException();
                return(CustomExceptionResponse());
            }
        }