示例#1
0
 /// <summary>
 /// Method delegate to service add seller to shop
 /// <summary>
 /// <param name="shopSeller">ShopSeller</param>
 /// <returns>void</returns>
 public async Task AddSellerToShop(ShopSeller shopSeller)
 {
     await shopRepository.AddSellerToShopAsync(shopSeller);
 }