Ejemplo n.º 1
0
        public IndividualCategoryResponse CreateCategory(Category category)
        {
            if (string.IsNullOrEmpty(category.Locale))
                category.Locale = Locale;
            var body = new { category };

            return GenericPost<IndividualCategoryResponse>("help_center/categories.json", body);
        }
Ejemplo n.º 2
0
 public async Task<IndividualCategoryResponse> UpdateCategoryAsync(Category category)
 {
     var body = new { category };
     return await GenericPutAsync<IndividualCategoryResponse>(string.Format("help_center/categories/{0}.json", category.Id), body);
 }
Ejemplo n.º 3
0
 public async Task<IndividualCategoryResponse> CreateCategoryAsync(Category category)
 {
     var body = new { category };
     return await GenericPostAsync<IndividualCategoryResponse>(string.Format("help_center/categories.json"), body);
 }
Ejemplo n.º 4
0
 public IndividualCategoryResponse UpdateCategory(Category category)
 {
     var body = new { category };
     return GenericPut<IndividualCategoryResponse>(string.Format("help_center/categories/{0}.json", category.Id), body);
 }