public async Task <IResult> Add(City city)
        {
            await _cityDal.AddAsync(city);

            return(new SuccessResult());
        }