public PersonService(IServiceContext serviceContext, IMicrosoftGraphUserStoreService msgraphService) : base(serviceContext)
        {
            lazyTeamViewKeyMap = new Lazy <Dictionary <string, string> >(() =>
                                                                         ConfigurationManager.AppSettings.AllKeys.Where(k => k.StartsWith(TeamKeyPrefix))
                                                                         .ToDictionary(k => ConfigurationManager.AppSettings[k], k => k.Substring(TeamKeyPrefix.Length)));

            this.msgraphService = msgraphService;
        }
 public UserService(IServiceContext context, IMicrosoftGraphUserStoreService microsoftGraphUserStoreService) : base(context)
 {
     this.microsoftGraphUserStoreService = microsoftGraphUserStoreService;
 }