Exemplo n.º 1
0
 public CommunicationController(ICommunicationService communicationService,
                                IAttachmentService attachmentService, ICommunicationProviderService serviceProviderService)
 {
     this.communicationService   = communicationService;
     this.attachmentService      = attachmentService;
     this.serviceProviderService = serviceProviderService;
 }
Exemplo n.º 2
0
 public UserController(IUserService userService, ICachingService cachingService, ICommunicationProviderService serviceProviderService, ISocialIntegrationService socialIntegrationService, IAccountService accountService, IUrlService urlService)
 {
     this.userService              = userService;
     this.cachingService           = cachingService;
     this.serviceProviderService   = serviceProviderService;
     this.socialIntegrationService = socialIntegrationService;
     this.accountService           = accountService;
     this.urlService = urlService;
 }
Exemplo n.º 3
0
 public EnterpriseService(IEnterpriseServicesRepository enterpriseServiceRepository, IContactRepository contactRepository, IAccountRepository accountRepository,
                          IServiceProviderRepository serviceProviderRepository, ICommunicationProviderService communicationService, IAccountService accountService)
 {
     this.enterpriseServiceRepository = enterpriseServiceRepository;
     this.contactRepository           = contactRepository;
     this.accountRepository           = accountRepository;
     this.serviceProviderRepository   = serviceProviderRepository;
     this.communicationService        = communicationService;
     this.accountService = accountService;
 }
Exemplo n.º 4
0
 public UrlService(ICommunicationProviderService communicationService)
 {
     this.imagHostingUrl       = ConfigurationManager.AppSettings["IMAGE_HOSTING_SERVICE_URL"] ?? "";
     this.communicationService = communicationService;
 }
Exemplo n.º 5
0
 /// <summary>
 /// Creating constructor for communication controller for accessing
 /// </summary>
 /// <param name="communicationService">communicationService </param>
 /// <param name="docrepositoryService">docrepositoryService</param>
 /// <param name="serviceProviderService">serviceProviderService </param>
 public CommunicationController(ICommunicationService communicationService, IAttachmentService docrepositoryService, ICommunicationProviderService serviceProviderService)
 {
     this.communicationService   = communicationService;
     this.docrepositoryService   = docrepositoryService;
     this.serviceProviderService = serviceProviderService;
 }