public IActionResult Get(int id)
        {
            var data = _repository.Get(id);

            return(Helper.CheckResult(data));
        }