public CardEntityKeyGenerator(
     IAuthenticationHelper authenticationHelper,
     IIdentityQueueManager identityQueueManager,
     string rowType)
 {
     this.authenticationHelper = authenticationHelper;
     this.IdentityQueueManager = identityQueueManager;
     this.RowType = rowType;
 }
示例#2
0
 public UserHelper(
     IAuthenticationHelper authenticationHelper, 
     IIdentityQueueManager identityQueueManager,
     IQuizCalendar defaultQuizCalendar)
 {
     this.authenticationHelper = authenticationHelper;
     this.identityQueueManager = identityQueueManager;
     this.defaultQuizCalendar = defaultQuizCalendar;
 }