Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created August 25, 2017 16:01
Show Gist options
  • Save dontpaniclabsgists/739278b5b96b28d7e0ff6ce41e39817a to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/739278b5b96b28d7e0ff6ce41e39817a to your computer and use it in GitHub Desktop.
azure_functions_4_2
public interface IWardrobeAccessor
{
    Task<int> Count();
    Task<Wardrobe[]> Wardrobes();
    Task<Wardrobe> CurrentWardrobe();
    Task<Wardrobe> AddWardrobe(Wardrobe warrobe);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment