/// <summary>
 /// Gets a count of GeoCountry.
 /// </summary>
 public async Task <int> GetCountryCount(CancellationToken cancellationToken = default(CancellationToken))
 {
     cancellationToken.ThrowIfCancellationRequested();
     return(dbGeoCountry.GetCount());
 }
示例#2
0
 /// <summary>
 /// Gets a count of GeoCountry.
 /// </summary>
 public async Task <int> GetCountryCount()
 {
     return(dbGeoCountry.GetCount());
 }