/// <summary> /// Gets a count of GeoZone. /// </summary> public async Task <int> GetGeoZoneCount( Guid countryGuid, CancellationToken cancellationToken = default(CancellationToken)) { cancellationToken.ThrowIfCancellationRequested(); return(await dbGeoZone.GetCount(countryGuid, cancellationToken)); }
/// <summary> /// Gets a count of GeoZone. /// </summary> public async Task <int> GetGeoZoneCount(Guid countryGuid) { return(await dbGeoZone.GetCount(countryGuid)); }