/// <summary>
 /// Initializes a new instance of the <see cref="GeofenceStillOutsideEventArgs"/> class.
 /// </summary>
 /// <param name="geofence">The geofence.</param>
 internal GeofenceStillOutsideEventArgs(Geofence geofence)
 {
     this.geofence = geofence;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="T:CaiMCT.Clients.Portable.GeofenceExitedEventArgs"/> class.
 /// </summary>
 /// <param name="geofence">Geofence.</param>
 /// <param name="dateTimeExited">Date time exited.</param>
 internal GeofenceExitedEventArgs(Geofence geofence, DateTime dateTimeExited)
 {
     Geofence       = geofence;
     DateTimeExited = dateTimeExited;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="GeofenceStillInsideEventArgs"/> class.
 /// </summary>
 /// <param name="geofence">The geofence.</param>
 internal GeofenceStillInsideEventArgs(Geofence geofence)
 {
     Geofence = geofence;
 }