public async Task <IRepositoryResult> UpdateCountry([FromBody] CountryDto country)
        {
            var repositoryResult = await _countryBusiness.UpdateCountry(country);

            var result = ResponseHandler.GetResult(repositoryResult);

            return(result);
        }