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