/// <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; }
/// <summary> /// Initializes a new instance of the <see cref="NoteService" /> class. /// </summary> /// <param name="vTigerService">the vtiger service</param> /// <param name="loggerService">the logger service</param> public NoteService(IVTigerService vTigerService, ILoggerService loggerService) { this.vTigerService = vTigerService; this.LoggerService = loggerService; }
/// <summary> /// Initializes a new instance of the <see cref="UserController" /> class. /// </summary> /// <param name="loggerService">The Logger service.</param> /// <param name="crmManagerService">The CRMManager service.</param> /// <param name="userService">The User service.</param> /// <param name="youfferContactService">The YoufferContact service.</param> /// <param name="commonService">The Common service.</param> /// <param name="youfferMessageService">The YoufferMessage service.</param> /// <param name="youfferFeedbackService">The youffer feedback service.</param> /// <param name="youfferPaymentService">The youffer payment service.</param> /// <param name="mapperFactory">The mapper factory.</param> /// <param name="vTigerService">the vtiger service. </param> /// <param name="pushMessageService">The push service.</param> /// <param name="ip2LocationService">The IP2Location service.</param> public UserController(ILoggerService loggerService, ICRMManagerService crmManagerService, IUserService userService, IYoufferContactService youfferContactService, ICommonService commonService, IYoufferMessageService youfferMessageService, IYoufferFeedbackService youfferFeedbackService, IYoufferPaymentService youfferPaymentService, IMapperFactory mapperFactory, IVTigerService vTigerService, IPushMessageService pushMessageService, IIP2LocationService ip2LocationService) : base(loggerService) { this.crmManagerService = crmManagerService; this.userService = userService; this.youfferContactService = youfferContactService; this.commonService = commonService; this.youfferMessageService = youfferMessageService; this.youfferFeedbackService = youfferFeedbackService; this.youfferPaymentService = youfferPaymentService; this.mapperFactory = mapperFactory; this.vTigerService = vTigerService; this.pushMessageService = pushMessageService; this.ip2LocationService = ip2LocationService; }
/// <summary> /// Initializes a new instance of the <see cref="UserReviewService" /> class. /// </summary> /// <param name="vTigerService">the vtiger service</param> /// <param name="loggerService">the logger service</param> public UserReviewService(IVTigerService vTigerService, ILoggerService loggerService) { this.vTigerService = vTigerService; this.LoggerService = loggerService; }
/// <summary> /// Initializes a new instance of the <see cref="OrganisationService" /> class. /// </summary> /// <param name="vTigerService">the vtiger service</param> /// <param name="loggerService">the logger service</param> public OrganisationService(IVTigerService vTigerService, ILoggerService loggerService) { this.vTigerService = vTigerService; this.LoggerService = loggerService; }
/// <summary> /// Initializes a new instance of the <see cref="NotificationService" /> class. /// </summary> /// <param name="vTigerService">the vtiger service</param> /// <param name="loggerService">the logger service</param> public NotificationService(IVTigerService vTigerService, ILoggerService loggerService) { this.vTigerService = vTigerService; this.LoggerService = loggerService; }
/// <summary> /// Initializes a new instance of the <see cref="ContactService" /> class. /// </summary> /// <param name="vTigerService">the vtiger service</param> /// <param name="loggerService">the logger service</param> public ContactService(IVTigerService vTigerService, ILoggerService loggerService) { this.vTigerService = vTigerService; this.LoggerService = loggerService; }
/// <summary> /// Initializes a new instance of the <see cref="RequestPaymentService" /> class. /// </summary> /// <param name="vTigerService">the vtiger service</param> /// <param name="loggerService">the logger service</param> public RequestPaymentService(IVTigerService vTigerService, ILoggerService loggerService) { this.vTigerService = vTigerService; this.LoggerService = loggerService; }