/// <summary>
 /// There are no comments for UserTransportEntitySet in the schema.
 /// </summary>
 public void AddToUserTransportEntitySet(UserTransportEntity userTransportEntity)
 {
     base.AddObject("UserTransportEntitySet", userTransportEntity);
 }
 /// <summary>
 /// Create a new UserTransportEntity object.
 /// </summary>
 /// <param name="id">Initial value of Id.</param>
 /// <param name="address">Initial value of Address.</param>
 public static UserTransportEntity CreateUserTransportEntity(int id, string address)
 {
     UserTransportEntity userTransportEntity = new UserTransportEntity();
     userTransportEntity.Id = id;
     userTransportEntity.Address = address;
     return userTransportEntity;
 }