public async Task <bool> DeleteGeoZonesByCountry( Guid countryGuid, CancellationToken cancellationToken = default(CancellationToken)) { cancellationToken.ThrowIfCancellationRequested(); return(await dbGeoZone.DeleteByCountry(countryGuid, cancellationToken)); }
public async Task <bool> DeleteGeoZonesByCountry(Guid countryGuid) { return(await dbGeoZone.DeleteByCountry(countryGuid)); }