コード例 #1
0
ファイル: CocktailIngredient.cs プロジェクト: akg1852/miksd
 public CocktailIngredient(Ingredients ingredient, decimal quantity,
                           SpecialPreps specialPrep = SpecialPreps.None, bool isOptional = false)
 {
     Ingredient  = ingredient;
     Quantity    = quantity;
     IsOptional  = isOptional;
     SpecialPrep = specialPrep;
 }
コード例 #2
0
ファイル: SpecialPrep.cs プロジェクト: akg1852/miksd
 public SpecialPrep(SpecialPreps id, string name)
 {
     Id   = id;
     Name = name;
 }