You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
680 B
28 lines
680 B
using ConsoleApp.Menu.Core;
|
|
using Model.Managers;
|
|
using Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ConsoleApp.Menu
|
|
{
|
|
internal class ProfileMenu : Menu<IMenu>
|
|
{
|
|
public ProfileMenu(MasterManager masterManager)
|
|
: base("Profile")
|
|
{
|
|
_allSelectors.Add(new Selector<IMenu>(
|
|
new ShowUserInfos(masterManager),
|
|
"My informations"));
|
|
|
|
_allSelectors.Add(new Selector<IMenu>(
|
|
new SearchUserRecipes(masterManager),
|
|
"My recipes"));
|
|
|
|
}
|
|
}
|
|
}
|