Ejemplo n.º 1
0
 public ContactService(IRepository <Contact> contactRepository, ISiteSettingService siteSettingService,
                       ICompanyService companyService, IContactGroupContactRepository contactGroupContactRepository,
                       IEmailTemplateService emailTemplateService, IEmailLogService emailLogService,
                       IContactCommunicationService contactCommunicationService, IUserRepository userRepository)
 {
     _siteSettingService            = siteSettingService;
     _contactRepository             = contactRepository;
     _companyService                = companyService;
     _contactGroupContactRepository = contactGroupContactRepository;
     _emailTemplateService          = emailTemplateService;
     _emailLogService               = emailLogService;
     _contactCommunicationService   = contactCommunicationService;
     _userRepository                = userRepository;
 }
Ejemplo n.º 2
0
 public ContactCommunicationsController(IContactCommunicationService contactCommunicationService)
 {
     _contactCommunicationService = contactCommunicationService;
 }