コード例 #1
0
ファイル: OrderService.cs プロジェクト: namlth273/ConStore
 public void BuyClothe(BuyClotheParam param)
 {
     _storeService.AddClothe(new AddClotheParam
     {
         ClotheId = param.ClotheId,
         Quantity = param.Quantity
     });
 }