Ejemplo n.º 1
0
 public AccountVerificationsCommand(IMembersQuery membersQuery, IUserAccountsCommand userAccountsCommand, IEmailVerificationsCommand emailVerificationsCommand, IEmailVerificationsQuery emailVerificationsQuery, IEmailsCommand emailsCommand, IChannelManager <IService> activationEmailManager)
 {
     _membersQuery              = membersQuery;
     _userAccountsCommand       = userAccountsCommand;
     _emailVerificationsCommand = emailVerificationsCommand;
     _emailVerificationsQuery   = emailVerificationsQuery;
     _emailsCommand             = emailsCommand;
     _activationEmailManager    = activationEmailManager;
 }
Ejemplo n.º 2
0
 public FriendsHandler(IEmailsCommand emailsCommand, IMembersQuery membersQuery, IMemberContactsQuery memberContactsQuery, ICandidatesQuery candidatesQuery, IResumesQuery resumesQuery, IDonationsQuery donationsQuery, IEmailVerificationsCommand emailVerificationsCommand, IEmailVerificationsQuery emailVerificationsQuery)
 {
     _emailsCommand             = emailsCommand;
     _membersQuery              = membersQuery;
     _memberContactsQuery       = memberContactsQuery;
     _candidatesQuery           = candidatesQuery;
     _resumesQuery              = resumesQuery;
     _donationsQuery            = donationsQuery;
     _emailVerificationsCommand = emailVerificationsCommand;
     _emailVerificationsQuery   = emailVerificationsQuery;
 }
Ejemplo n.º 3
0
 public MembersController(IFilesQuery filesQuery, IEmployerMemberAccessReportsQuery employerMemberAccessReportsQuery, IMembersQuery membersQuery, ICandidatesQuery candidatesQuery, IResumesQuery resumesQuery, IMemberStatusQuery memberStatusQuery, IJobAdSearchesQuery jobAdSearchesQuery, IExecuteJobAdSearchCommand executeJobAdSearchCommand, IJobAdsQuery jobAdsQuery, IJobAdReportsQuery jobAdReportsQuery, IMemberApplicationsQuery memberApplicationsQuery, IEmailVerificationsCommand emailVerificationsCommand, IEmailVerificationsQuery emailVerificationsQuery)
 {
     _filesQuery = filesQuery;
     _employerMemberAccessReportsQuery = employerMemberAccessReportsQuery;
     _membersQuery              = membersQuery;
     _candidatesQuery           = candidatesQuery;
     _resumesQuery              = resumesQuery;
     _memberStatusQuery         = memberStatusQuery;
     _jobAdSearchesQuery        = jobAdSearchesQuery;
     _executeJobAdSearchCommand = executeJobAdSearchCommand;
     _jobAdsQuery               = jobAdsQuery;
     _jobAdReportsQuery         = jobAdReportsQuery;
     _memberApplicationsQuery   = memberApplicationsQuery;
     _emailVerificationsCommand = emailVerificationsCommand;
     _emailVerificationsQuery   = emailVerificationsQuery;
 }
Ejemplo n.º 4
0
 public EmailStatusService(IEmailVerificationsCommand emailVerificationsCommand)
 {
     _emailVerificationsCommand = emailVerificationsCommand;
 }