Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="OpportunityService" /> class.
 /// </summary>
 /// <param name="vTigerService">the vtiger service</param>
 /// <param name="loggerService">the logger service</param>
 /// <param name="youfferLeadService">The youffer lead service.</param>
 /// <param name="youfferContactService">The youffer contact service.</param>
 /// <param name="leadService"> The lead service.</param>
 /// <param name="userReviewService">The user review service.</param>
 public OpportunityService(IVTigerService vTigerService, ILoggerService loggerService, IYoufferLeadService youfferLeadService, IYoufferContactService youfferContactService, ILeadService leadService, IUserReviewService userReviewService)
 {
     this.vTigerService = vTigerService;
     this.LoggerService = loggerService;
     this.youfferLeadService = youfferLeadService;
     this.youfferContactService = youfferContactService;
     this.leadService = leadService;
     this.userReviewService = userReviewService;
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CompanyController"/> class.
 /// </summary>
 /// <param name="loggerService">The logger service.</param>
 /// <param name="crmManagerService">The CRM manager service.</param>
 /// <param name="userService">The user service.</param>
 /// <param name="noteService">The note service.</param>
 /// <param name="commonService">The common service.</param>
 /// <param name="youfferMessageService">The youffer message service.</param>
 /// <param name="oppService">The opp service.</param>
 /// <param name="youfferContactService">The youffer contact service.</param>
 /// <param name="youfferLeadService">The youffer lead service.</param>
 /// <param name="youfferFeedbackService">The youffer feedback service.</param>
 /// <param name="mapperFactory">The Mapper Factory</param>
 /// <param name="youfferNoteService">The youffer note service.</param>
 /// <param name="youfferInterestService"> The youffer interest service </param>
 /// <param name="pushMessageService">The push message service</param>
 public CompanyController(ILoggerService loggerService, ICRMManagerService crmManagerService, IUserService userService, INoteService noteService, ICommonService commonService, IYoufferMessageService youfferMessageService, IOpportunityService oppService, IYoufferContactService youfferContactService, IYoufferLeadService youfferLeadService, IYoufferFeedbackService youfferFeedbackService, IMapperFactory mapperFactory, IYoufferNoteService youfferNoteService, IYoufferInterestService youfferInterestService, IPushMessageService pushMessageService)
     : base(loggerService)
 {
     this.mapperFactory = mapperFactory;
     this.crmManagerService = crmManagerService;
     this.userService = userService;
     this.noteService = noteService;
     this.commonService = commonService;
     this.youfferMessageService = youfferMessageService;
     this.oppService = oppService;
     this.youfferContactService = youfferContactService;
     this.youfferLeadService = youfferLeadService;
     this.youfferFeedbackService = youfferFeedbackService;
     this.youfferNoteService = youfferNoteService;
     this.youfferInterestService = youfferInterestService;
     this.pushMessageService = pushMessageService;
 }