Created
August 25, 2017 16:01
-
-
Save dontpaniclabsgists/739278b5b96b28d7e0ff6ce41e39817a to your computer and use it in GitHub Desktop.
azure_functions_4_2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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