public CmsPluginServiceBinder(IUserService userService, IRoleService roleService, IUserRolesService userRolesService, IEnquiryService enquiryService)
 {
     this.userService = userService;
     this.roleService = roleService;
     this.userRolesService = userRolesService;
     this.enquiryService = enquiryService;
 }
 public EnquiriesController(IUnitOfWork unitOfWork,
                            IEnquiryService enquiryService, IMapper mapper)
 {
     _unitOfWork     = unitOfWork;
     _enquiryService = enquiryService;
     _mapper         = mapper;
 }
Example #3
0
 public EnquiryController(PgccContext context, IMapper mapper, IEmailService emailService, IEnquiryService enquiryService)
 {
     _context        = context;
     _mapper         = mapper;
     _emailService   = emailService;
     _enquiryService = enquiryService;
 }
        public EnquiryController(IEnquiryService EnquiryService, ILookupService lookupService,
            IAcademicYearService AcademicYearService, IClassService ClassService,
            ISectionService SectionService)
            : base()
        {
            this._EnquiryService = EnquiryService;
            this._lookupService = lookupService;

            this._AcademicYearService = AcademicYearService;
            this._ClassService = ClassService;
            this._SectionService = SectionService;
        }
Example #5
0
 public OrderController(IAuditLevelService auditLevelService, IEnquiryService enquiryService,
     IMapperFactory mapperFactory, IEmployeesService employeesService, IPositionService positionService,
     IOrderService orderService, IPayPeriodService payPeriodService, ICustomerService customerService)
 {
     _auditLevelService = auditLevelService;
     _enquiryService = enquiryService;
     _mapperFactory = mapperFactory;
     _employeesService = employeesService;
     _positionService = positionService;
     _orderService = orderService;
     _payPeriodService = payPeriodService;
     _customerService = customerService;
 }
 public MyEnquiryController(IEnquiryService enquiryService,
     IMapperFactory mapperFactory,
     IEmployeesService employeesService,
     IPositionService positionService,
     IProductService productService,
     ICustomerService customerService)
 {
     _enquiryService = enquiryService;
     _mapperFactory = mapperFactory;
     _employeesService = employeesService;
     _positionService = positionService;
     _productService = productService;
     _customerService = customerService;
 }
        public EnquiriesController(IPersonService personService, IMailerService mailerService,
                                   IMappingEngine mappingEngine, IAddressService addressService,
                                   IEnquiryTypeService enquiryTypeService, IEnquiryService enquiryService,
                                   ISerializer serializer, IEnquiryRecipientService enquiryRecipientService)
        {
            if (mailerService == null)
            {
                throw new ArgumentNullException("mailerService");
            }
            if (personService == null)
            {
                throw new ArgumentNullException("personService");
            }
            if (mappingEngine == null)
            {
                throw new ArgumentNullException("mappingEngine");
            }
            if (addressService == null)
            {
                throw new ArgumentNullException("addressService");
            }
            if (enquiryTypeService == null)
            {
                throw new ArgumentNullException("enquiryTypeService");
            }
            if (enquiryService == null)
            {
                throw new ArgumentNullException("enquiryService");
            }
            if (serializer == null)
            {
                throw new ArgumentNullException("serializer");
            }
            if (enquiryRecipientService == null)
            {
                throw new ArgumentNullException("enquiryRecipientService");
            }

            _mailerService           = mailerService;
            _mappingEngine           = mappingEngine;
            _personService           = personService;
            _addressService          = addressService;
            _enquiryService          = enquiryService;
            _enquiryTypeService      = enquiryTypeService;
            _serializer              = serializer;
            _enquiryRecipientService = enquiryRecipientService;
        }
 public EnquirySettingController(IEnquiryService enquiryService, IMapperFactory mapperFactory)
 {
     _enquiryService = enquiryService;
     _mapperFactory = mapperFactory;
 }
 /// <summary>
 /// Public constructor to initialize enquiry service instance
 /// </summary>
 public EnquiryController(IEnquiryService enquiryService, GlobalLogger logger)
 {
     this._enquiryService = enquiryService;
     this._logger         = logger;
 }
 public EnquiryController(IUserService userService, IEnquiryService enquiryService, IResidentService residentService, ICareHomeService careHomeService)
 {
     _enquiryService  = enquiryService ?? throw new ArgumentNullException(nameof(enquiryService));
     _residentService = residentService ?? throw new ArgumentNullException(nameof(residentService));
     _careHomeService = careHomeService ?? throw new ArgumentNullException(nameof(careHomeService));
 }
Example #11
0
 public EnquiriesController(ICarAdsService carAdsService, IEnquiryService enquiryService)
 {
     _carAdsService = carAdsService;
     _enquiryService = enquiryService;
 }
Example #12
0
 public EnquiryController(IEnquiryService enquiryService, ICarAdsService carAdsService)
 {
     _enquiryService = enquiryService;
     _carAdsService = carAdsService;
 }
Example #13
0
 public BooksController(IBookService bookService, IEnquiryService enquiryService)
 {
     _bookService    = bookService;
     _enquiryService = enquiryService;
 }
 public EnquiryController(IBookService carService, IEnquiryService enquiryService)
 {
     _enquiryService = enquiryService;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="EnquiryServiceBinder"/> class.
 /// </summary>
 /// <param name="enquiryService">
 /// The EnquiryServiceBinder service.
 /// </param>
 public EnquiryServiceBinder(IEnquiryService enquiryService)
 {
     this.enquiryService = enquiryService;
 }
 /// <summary>
 /// Public constructor to initialize enquiry service instance
 /// </summary>
 public EnquiryController(IEnquiryService enquiryService)
 {
     _enquiryService = enquiryService;
 }
Example #17
0
 public OrderCheckUnitPriceController(IEnquiryService enquiryService,
      IEmployeesService employeesService)
 {
     _enquiryService = enquiryService;
     _employeesService = employeesService;
 }
 public EnquiryController(IEnquiryService enquiryService)
 {
     this.enquiryService = enquiryService;
 }
        public MyEnquiryByCustomerController(IEnquiryService enquiryService,
            IMapperFactory mapperFactory,
            IEmployeesService employeesService,
            IPositionService positionService)
        {
            _enquiryService = enquiryService;
            _mapperFactory = mapperFactory;
            _employeesService = employeesService;
            _positionService = positionService;

        }