示例#1
0
 public DepartmentRegistrationController(IDepartmentsService departmentsService, IUsersService usersService, IEmailService emailService,
                                         IInvitesService invitesService, IUserProfileService userProfileService, ISubscriptionsService subscriptionsService, IAffiliateService affiliateService,
                                         IEventAggregator eventAggregator, IEmailMarketingProvider emailMarketingProvider)
 {
     _departmentsService     = departmentsService;
     _usersService           = usersService;
     _emailService           = emailService;
     _invitesService         = invitesService;
     _userProfileService     = userProfileService;
     _subscriptionsService   = subscriptionsService;
     _affiliateService       = affiliateService;
     _eventAggregator        = eventAggregator;
     _emailMarketingProvider = emailMarketingProvider;
 }
示例#2
0
 public AccountController(
     UserManager <Microsoft.AspNet.Identity.EntityFramework6.IdentityUser> userManager, SignInManager <Microsoft.AspNet.Identity.EntityFramework6.IdentityUser> signInManager,
     IDepartmentsService departmentsService, IUsersService usersService, IEmailService emailService, IInvitesService invitesService, IUserProfileService userProfileService,
     ISubscriptionsService subscriptionsService, IAffiliateService affiliateService, IEventAggregator eventAggregator, IEmailMarketingProvider emailMarketingProvider)
 {
     _userManager            = userManager;
     _signInManager          = signInManager;
     _departmentsService     = departmentsService;
     _usersService           = usersService;
     _emailService           = emailService;
     _invitesService         = invitesService;
     _userProfileService     = userProfileService;
     _subscriptionsService   = subscriptionsService;
     _affiliateService       = affiliateService;
     _eventAggregator        = eventAggregator;
     _emailMarketingProvider = emailMarketingProvider;
 }
 public CoreBridgeController(
     UserManager <IdentityUser> userManager, SignInManager <IdentityUser> signInManager,
     IDepartmentsService departmentsService, IUsersService usersService, IEmailService emailService, IInvitesService invitesService, IUserProfileService userProfileService,
     ISubscriptionsService subscriptionsService, IAffiliateService affiliateService, IEventAggregator eventAggregator, IEmailMarketingProvider emailMarketingProvider)
 {
     _userManager            = userManager;
     _signInManager          = signInManager;
     _departmentsService     = departmentsService;
     _usersService           = usersService;
     _emailService           = emailService;
     _invitesService         = invitesService;
     _userProfileService     = userProfileService;
     _subscriptionsService   = subscriptionsService;
     _affiliateService       = affiliateService;
     _eventAggregator        = eventAggregator;
     _emailMarketingProvider = emailMarketingProvider;
 }