Ejemplo n.º 1
0
        public SettingsViewModel(IAzureSignUpService azureSignUpService, IRepository repository)
        {
            _azureSignUpService = azureSignUpService;
            _repository         = repository;

            SettingsList = new List <string>
            {
                "Log out",
                "Delete all recipes from the database"
            };
        }
Ejemplo n.º 2
0
 public LoginViewModel(IAzureSignUpService signUpService)
 {
     _signUpService = signUpService;
 }