Ejemplo n.º 1
0
 public override Task <GeofenceState> RequestState(GeofenceRegion region, CancellationToken cancelToken = default)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
        public override async Task StartMonitoring(GeofenceRegion region)
        {
            await this.Create(region);

            await this.Repository.Set(region.Identifier, region);
        }
Ejemplo n.º 3
0
 public bool Equals(GeofenceRegion other) => (this.Identifier) == (other.Identifier);
Ejemplo n.º 4
0
 public override Task StopMonitoring(GeofenceRegion region)
 {
     throw new NotImplementedException();
 }
 public abstract Task <GeofenceState> RequestState(GeofenceRegion region, CancellationToken cancelToken = default);
 public abstract Task StartMonitoring(GeofenceRegion region);