예제 #1
0
 /// <summary>
 /// Create a new ShoeType object.
 /// </summary>
 /// <param name="hakken">Initial value of the Hakken property.</param>
 /// <param name="laarzen">Initial value of the Laarzen property.</param>
 /// <param name="slippers">Initial value of the Slippers property.</param>
 /// <param name="gympies">Initial value of the Gympies property.</param>
 public static ShoeType CreateShoeType(global::System.Int32 hakken, global::System.Int32 laarzen, global::System.Int32 slippers, global::System.Int32 gympies)
 {
     ShoeType shoeType = new ShoeType();
     shoeType.Hakken = hakken;
     shoeType.Laarzen = laarzen;
     shoeType.Slippers = slippers;
     shoeType.Gympies = gympies;
     return shoeType;
 }
예제 #2
0
 partial void OnShoeTypeChanging(ShoeType value);
예제 #3
0
 /// <summary>
 /// Create a new Shoecolor object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="shoeType">Initial value of the ShoeType property.</param>
 /// <param name="shoeDescriptionId">Initial value of the ShoeDescriptionId property.</param>
 /// <param name="color">Initial value of the Color property.</param>
 public static Shoecolor CreateShoecolor(global::System.Int32 id, ShoeType shoeType, global::System.Int32 shoeDescriptionId, global::System.String color)
 {
     Shoecolor shoecolor = new Shoecolor();
     shoecolor.Id = id;
     shoecolor.ShoeType = StructuralObject.VerifyComplexObjectIsNotNull(shoeType, "ShoeType");
     shoecolor.ShoeDescriptionId = shoeDescriptionId;
     shoecolor.Color = color;
     return shoecolor;
 }
예제 #4
0
 /// <summary>
 /// Create a new Shoe object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="shoeType">Initial value of the ShoeType property.</param>
 /// <param name="shoeDescriptionId">Initial value of the ShoeDescriptionId property.</param>
 public static Shoe CreateShoe(global::System.Int32 id, ShoeType shoeType, global::System.Int32 shoeDescriptionId)
 {
     Shoe shoe = new Shoe();
     shoe.Id = id;
     shoe.ShoeType = StructuralObject.VerifyComplexObjectIsNotNull(shoeType, "ShoeType");
     shoe.ShoeDescriptionId = shoeDescriptionId;
     return shoe;
 }