Example #1
0
 /// <summary>
 /// Method delegate to service add category to shop
 /// <summary>
 /// <param name="shopCategory">ShopCategory</param>
 /// <returns>void</returns>
 public async Task AddCategoryToShop(ShopCategory shopCategory)
 {
     await shopRepository.AddCategoryToShopAsync(shopCategory);
 }