public GeofenceCircularRegion(GeofenceCircularRegion region)
 {
     Id                    = region.Id;
     Latitude              = region.Latitude;
     Longitude             = region.Longitude;
     Radius                = region.Radius;
     NotifyOnEntry         = region.NotifyOnEntry;
     NotifyOnExit          = region.NotifyOnExit;
     NotifyOnStay          = region.NotifyOnStay;
     ShowNotification      = region.ShowNotification;
     Persistent            = region.Persistent;
     ShowEntryNotification = region.ShowEntryNotification;
     ShowExitNotification  = region.ShowExitNotification;
     ShowStayNotification  = region.ShowStayNotification;
 }
 /// <summary>
 /// Saves geofence region in store
 /// </summary>
 /// <param name="region"></param>
 public abstract void Save(GeofenceCircularRegion region);