コード例 #1
0
 public TaskServices(IUnitOfWork unitOfWork, IEditionHelper editionHelper, IEmailNotificationHelper emailNotificationHelper)
     : base(unitOfWork)
 {
     _unitOfWork                 = (UnitOfWork)unitOfWork;
     _editionServices            = new EditionServices(unitOfWork);
     _editionTranslationServices = new EditionTranslationServices(unitOfWork);
     _eventServices              = new EventServices(unitOfWork);
     _eventDirectorServices      = new EventDirectorServices(unitOfWork);
     _editionServiceHelper       = new EditionServiceHelper(unitOfWork);
     _editionHelper              = editionHelper;
     _emailNotificationHelper    = emailNotificationHelper;
 }
コード例 #2
0
 public EmailNotificationController(
     IUserServices authUserServices,
     IRoleServices roleServices,
     IApplicationServices applicationServices,
     IIndustryServices industryServices,
     IRegionServices regionServices,
     IEditionServices editionServices,
     IEventServices eventServices,
     IEventDirectorServices eventDirectorServices,
     ILogServices logServices,
     INotificationServices notificationServices,
     IEmailNotificationHelper emailNotificationHelper,
     IUserServices userServices,
     IUserRoleServices userRoleServices) :
     base(authUserServices, roleServices, applicationServices, industryServices, regionServices,
          editionServices, eventServices, eventDirectorServices, logServices, notificationServices, userServices, userRoleServices)
 {
     _emailNotificationHelper = emailNotificationHelper;
 }