Esempio n. 1
0
 /// <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));
 }
Esempio n. 2
0
 /// <summary>
 /// Gets a count of GeoZone.
 /// </summary>
 public async Task <int> GetGeoZoneCount(Guid countryGuid)
 {
     return(await dbGeoZone.GetCount(countryGuid));
 }