public EmployerMemberContactsCommand(IEmployerContactsRepository repository, IEmployerMemberViewsCommand employerMemberViewsCommand, IMemberContactsQuery memberContactsQuery, IFilesCommand filesCommand, IFilesQuery filesQuery)
 {
     _repository = repository;
     _employerMemberViewsCommand = employerMemberViewsCommand;
     _memberContactsQuery        = memberContactsQuery;
     _filesCommand = filesCommand;
     _filesQuery   = filesQuery;
 }
Exemple #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;
 }