public IActionResult GetDecisionsForTable(string searchedData, int page, int pageSize)
        {
            var distinctions = _decisionService.GetDecisionsForTable(searchedData, page, pageSize);

            return(Ok(distinctions));
        }