public OnlineMeetingRepository()
        {
            var authentificationPlatformFactory = Mvx.Resolve <IAuthentificationPlatformFactory>();

            _authentificationService = new AuthentificationService(authentificationPlatformFactory);
        }
Beispiel #2
0
 public MeetingRepository(IAuthentificationPlatformFactory authentificationPlatformFactory)
 {
     _authentificationService = new AuthentificationService(authentificationPlatformFactory);
 }