/// <summary>Creates a new instance of the <see cref="CreatedCoordinateSystemEventArgs" /> class.</summary> /// <param name="id">The identifier of the coordinate system.</param> /// <param name="coordinateSystem">The coordinate system instance.</param> public CreatedCoordinateSystemEventArgs(Srid id, ICoordinateSystem coordinateSystem) { Id = id; CoordinateSystem = coordinateSystem; }
/// <summary>Creates a new instance of the <see cref="CreatingCoordinateSystemEventArgs" /> class.</summary> /// <param name="id">The identifier of the coordinate system being created.</param> public CreatingCoordinateSystemEventArgs(Srid id) { Id = id; }