Example #1
0
 public GoodsBlockWarpInfo(string name, GoodsBlockWarpStyle style, IList <Guid> goodsBlocks, bool isShow, int sort)
 {
     Name        = name;
     Style       = style;
     IsShow      = isShow;
     Sort        = sort;
     GoodsBlocks = goodsBlocks;
 }
 public CreateGoodsBlockWarpCommand(Guid id,
                                    string name,
                                    GoodsBlockWarpStyle style,
                                    IList <Guid> goodsBlocks,
                                    bool isShow,
                                    int sort) : base(id)
 {
     Name        = name;
     Style       = style;
     GoodsBlocks = goodsBlocks;
     IsShow      = isShow;
     Sort        = sort;
 }
 public UpdateGoodsBlockWarpCommand(
     string name,
     GoodsBlockWarpStyle style,
     IList <Guid> goodsBlocks,
     bool isShow,
     int sort)
 {
     Name        = name;
     Style       = style;
     GoodsBlocks = goodsBlocks;
     IsShow      = isShow;
     Sort        = sort;
 }