public static ShipperType GetShipperTypesForInsert()
		{
			ShipperType shipperType = new ShipperType();

			shipperType.Name = "Trains";

			return shipperType;
		}
		private static Shipper GetPlanesRUsShipper(ShipperType planesType)
		{
			return GetShipper("Planes R Us", "555-PLANES", planesType.Id);
		}
		private static Shipper GetWeDoEverythingShipper(ShipperType planesType)
		{
			return GetShipper("We do everything!", "555-UNICORNS", planesType.Id);
		}
		private static Shipper GetTrainsRUsShipper(ShipperType trainsType)
		{
			return GetShipper("Trains R Us", "555-TRAINS", trainsType.Id);
		}