public StatisticsService(IEventService eventService, IModificationEntryService modService, IContactService contactService, IOrganizationService organizationService)
 {
     this.eventService        = eventService;
     this.modService          = modService;
     this.organizationService = organizationService;
     this.contactService      = contactService;
 }
Beispiel #2
0
 public ContactController(IMapper mapper, IContactService contactService, IUserService userService, IEventService eventService, IModificationEntryService modService, IMailService mailService, IHistoryService historyService)
 {
     _mapper             = mapper;
     this.eventService   = eventService;
     this.userService    = userService;
     this.modService     = modService;
     this.contactService = contactService;
     this.historyService = historyService;
     this.mailService    = mailService;
 }
 public EventController(IMapper mapper,
                        IEventService eventService,
                        IModificationEntryService modService,
                        IUserService userService,
                        IContactService contactService,
                        IOrganizationService orgaService,
                        IMailService mailService)
 {
     this._mapper        = mapper;
     this.mailService    = mailService;
     this.userService    = userService;
     this.modService     = modService;
     this.orgaService    = orgaService;
     this.eventService   = eventService;
     this.contactService = contactService;
 }
Beispiel #4
0
 public OrganizationController(
     IMapper mapper,
     IOrganizationService organizationService,
     IUserService userService,
     ILoggerFactory logger,
     IModificationEntryService modService,
     IContactService contactService,
     IHistoryService historyService,
     IEventService eventService)
 {
     _mapper              = mapper;
     this.eventService    = eventService;
     this.contactService  = contactService;
     this.userService     = userService;
     this.modService      = modService;
     _organizationService = organizationService;
     _logger              = logger.CreateLogger(nameof(OrganizationController));
     this.historyService  = historyService;
 }
Beispiel #5
0
 public UsersController(IUserService userService, IMapper mapper, IModificationEntryService modService)
 {
     _userService    = userService;
     this.modService = modService;
     _mapper         = mapper;
 }
Beispiel #6
0
 public UserCheckDateService(CrmContext context, IUserService userService, IModificationEntryService modificationEntryService, IConfiguration configuration) : base(context)
 {
     this.userService = userService;
     this.modificationEntryService = modificationEntryService;
     this.configuration            = configuration;
 }