private void GetStartPage()
        {
            TodoistService todoistService = new TodoistService();

            todoistService.GetStartPage
            (app.settings.DateStringHome,
            (data) =>
            {
                //@TODO: Change this for more flexibility.
                ApplyStartPage(data);
            },
            (error) =>
            {
                MessageBox.Show(error);
            },
            () =>
            {

            });
        }