Пример #1
0
 public async Task <bool> DeleteGeoZonesByCountry(
     Guid countryGuid,
     CancellationToken cancellationToken = default(CancellationToken))
 {
     cancellationToken.ThrowIfCancellationRequested();
     return(await dbGeoZone.DeleteByCountry(countryGuid, cancellationToken));
 }
Пример #2
0
 public async Task <bool> DeleteGeoZonesByCountry(Guid countryGuid)
 {
     return(await dbGeoZone.DeleteByCountry(countryGuid));
 }