Esempio n. 1
0
        public async void insertSampleGoalsToDbIfNotExist()
        {
            Goal goal = goalDatabase.GetTheFirstGoal();

            if (goal == null)
            {
                //in case of empty goalDb
                await goalDatabase.InsertGoal(new Goal(1, "Go for a walk", "Take on your shoes and enjoy the fresh air outside!", "sport"));

                await goalDatabase.InsertGoal(new Goal(2, "Stretching", "After your shower, when muscles are relaxed, do some easy stretching excercises.", "sport"));

                await goalDatabase.InsertGoal(new Goal(3, "Find a buddy", "Find a person you could go for a walk regulary. You can motivate each other!", "social"));

                await goalDatabase.InsertGoal(new Goal(4, "Meetup", "Call a friend and go out with her/him. See a movie or have a dinner out", "social"));

                await goalDatabase.InsertGoal(new Goal(5, "Keep water close to you", "Keep a full water bottle on your desk and drink water throughout the day.", "food"));

                await goalDatabase.InsertGoal(new Goal(6, "Walk a bit more", "Are you driving to the supermarket to do some shopping? Park your car a bit further away so you can walk a bit!", "food"));

                await goalDatabase.InsertGoal(new Goal(7, "Inner peace", "Close your eyes, sit on the floor and try to focus on your breathing for 5 min", "relax"));

                await goalDatabase.InsertGoal(new Goal(8, "Eat a leaf", "Increase dark green leafy vegetables in your diet like kale, spinach, swiss chard, and mustardgreens.", "food"));

                await goalDatabase.InsertGoal(new Goal(9, "Go greener", "Add one additional serving of vegetables to one of your daily meals.", "food"));

                await goalDatabase.InsertGoal(new Goal(10, "Tea time", "Drink a cup of green tea. Tasty!", "food"));

                await goalDatabase.InsertGoal(new Goal(11, "Active watching", "Walk or jogg in place while watching tv. Make as many breakes as you wish.", "social"));

                await goalDatabase.InsertGoal(new Goal(12, "Fresh start", "Drink a glass of water - first thing in the morning.", "food"));
            }

            Close(this);
        }
Esempio n. 2
0
        public async void insertSampleSelectedGoalsToDbForTesting()
        {
            clearSelectedGoalDb();
            Debug.WriteLine("###############  insert sample diary");

            Goal goal = goalDatabase.GetTheFirstGoal(); //this works

            if (goal == null)
            {
                //in case of empty goalDb
                goal = new Goal(0, "Sample Title", "Desc", "Cat");
            }
            SelectedGoal newSGoal = new SelectedGoal(goal);

            SelectedGoals.Add(newSGoal);

            foreach (var selectedGoal in SelectedGoals)
            {
                await selectedGoalDatabase.InsertSelectedGoal(selectedGoal);
            }
            Close(this);
        }