public void Delete(int id)
        {
            var obj = _iRepository.GetById(id);

            _iRepository.Delete(obj);
        }