Exemple #1
0
 /// <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;
 }
Exemple #2
0
 /// <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;
 }