Created
December 7, 2018 11:33
-
-
Save mikhailshilkov/1054eda1da35bad920863f3e91e3ea5e to your computer and use it in GitHub Desktop.
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
[FunctionName("BookConference")] | |
public static ConfTicket BookConference([ActivityTrigger] string conference) | |
{ | |
var ticket = BookingService.Book(conference); | |
return new ConfTicket { Code = ticket }; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment