Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 30, 2019 18:52
Show Gist options
  • Save evgomes/2ed8d168d91c6927dc992fe643a60265 to your computer and use it in GitHub Desktop.
Save evgomes/2ed8d168d91c6927dc992fe643a60265 to your computer and use it in GitHub Desktop.
New UpdateAsync from ICategoryService, of Supermarket API
public interface ICategoryService
{
Task<IEnumerable<Category>> ListAsync();
Task<SaveCategoryResponse> SaveAsync(Category category);
Task<SaveCategoryResponse> UpdateAsync(int id, Category category);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment