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

            var result = ResponseHandler.GetResult(repositoryResult);

            return(result);
        }