public async Task RequestGoogleCalendarData()
 {
     await _googleAuthenticator.LoginGoogle(_testUsername);
     var calendarService = new GoogleCalendarService(_googleAuthenticator.GetCurrentCredentials());
     calendarService.CreateService();
 }
 /// <summary>
 /// Get events from current user his/her google calendar
 /// </summary>
 /// <returns>A list of events in GoogleCalenderModel</returns>
 public List<GoogleCalendarModel> GetEventsUser()
 {
     var googleCalendarService = new GoogleCalendarService(_credential);
     googleCalendarService.CreateService();
     return googleCalendarService.GetData();
 }