public async Task <GetResult <Continent> > GetAllAsync()
        {
            try
            {
                var result = await _repository.GetAllAsync();

                return(result.ToBLLResult());
            }
            catch (Exception ex)
            {
                Logger.Error(ex);
                return(new GetResult <Continent>(ex));
            };
        }