using Model; namespace Views; /// /// Classe de la page contenant le detail de la recette /// /// public partial class ViewRecette : ContentPage { public MasterManager Master => App.Master; public User user => (App.Current as App).CurrentUser; public Recipe Recipe => (App.Current as App).CurrentRecipe; public RecipeCollection AllRecipes => (App.Current as App).AllRecipes; public ViewRecette() { InitializeComponent(); BindingContext = this; } }