public async Task <IDataResult <List <City> > > GetAll()
 {
     return(new SuccessDataResult <List <City> >(await _cityDal.GetAllAsync()));
 }