Exemplo n.º 1
0
 public AdminController(
     IBlogRepository blogrepo,
     IBlogCategoryRepository blogcategoryrepo,
     ICollectionRepository collectionrepo,
     IColletionPictureRepository collectionpicturerepo,
     ICourseRepository courserepo,
     ICourseCategoryRepository coursecategoryrepo,
     ICoursePriceRepository coursepricerepo,
     IEventRepository eventrepo,
     IEventPictureRepository eventpicturerepo,
     IEventPriceRepository eventpricerepo,
     IUserRepository userrepo,
     IEmployeeRepository employeerepo,
     ITestimonialRepository testimonialrepo,
     ILookupRepository lookuprepositoryrepo
     )
 {
     blogrepository              = blogrepo;
     blogcategoryrepository      = blogcategoryrepo;
     collectionrepository        = collectionrepo;
     collectionpicturerepository = collectionpicturerepo;
     courserepository            = courserepo;
     coursecategoryrepository    = coursecategoryrepo;
     coursepricerepository       = coursepricerepo;
     eventrepository             = eventrepo;
     eventpricerepository        = eventpricerepo;
     eventpicturerepository      = eventpicturerepo;
     userrepository              = userrepo;
     employeerepository          = employeerepo;
     testimonialrepository       = testimonialrepo;
     lookuprepository            = lookuprepositoryrepo;
 }
Exemplo n.º 2
0
 public SiteAdminController(ISolutionRepository solutionRepository, IServiceRepository serviceRepository,
                            ITestimonialRepository testimonialRepository)
 {
     _solutionrepository    = solutionRepository;
     _servicerepository     = serviceRepository;
     _testimonialrepository = testimonialRepository;
 }
Exemplo n.º 3
0
 public CustomerService(IAddressService addressService, ICustomerRepository customerRepository, ITestimonialRepository testimonialRepository, IUserService userService,
                        IProspectCustomerRepository prospectCustomerRepository, IUniqueItemRepository <ProspectCustomer> uniqueItemProspectCustomerRepository, IEventCustomerRepository eventCustomerRepository,
                        IUserNameGenerator userNameGenerator, IShippingDetailRepository shippingDetailRepository, IPrimaryCarePhysicianRepository primaryCarePhysicianRepository,
                        IEventRepository eventRepository, ICorporateAccountRepository corporateAccountRepository, ILanguageRepository languageRepository, ILanguageService languageService,
                        ICustomerProfileHistoryRepository customerProfileHistoryRepository, IPhoneNumberFactory phoneNumberFactory, ICallQueueCustomerPublisher callQueueCustomerPublisher,
                        ICustomerTargetedService customerTargetedService, ICustomerEligibilityRepository customerEligibilityRepository, IPhysicianRecordRequestSignatureRepository physicianRecordRequestSignatureRepository,
                        IUniqueItemRepository <File> fileRepository, IMediaRepository mediaRepository, ICallQueueCustomerPubFactory callQueueCustomerPubFactory)
 {
     _addressService                            = addressService;
     _customerRepository                        = customerRepository;
     _testimonialRepository                     = testimonialRepository;
     _userService                               = userService;
     _prospectCustomerRepository                = prospectCustomerRepository;
     _uniqueItemProspectCustomerRepository      = uniqueItemProspectCustomerRepository;
     _eventCustomerRepository                   = eventCustomerRepository;
     _userNameGenerator                         = userNameGenerator;
     _shippingDetailRepository                  = shippingDetailRepository;
     _primaryCarePhysicianRepository            = primaryCarePhysicianRepository;
     _eventRepository                           = eventRepository;
     _corporateAccountRepository                = corporateAccountRepository;
     _languageRepository                        = languageRepository;
     _languageService                           = languageService;
     _customerProfileHistoryRepository          = customerProfileHistoryRepository;
     _phoneNumberFactory                        = phoneNumberFactory;
     _callQueueCustomerPublisher                = callQueueCustomerPublisher;
     _customerTargetedService                   = customerTargetedService;
     _customerEligibilityRepository             = customerEligibilityRepository;
     _physicianRecordRequestSignatureRepository = physicianRecordRequestSignatureRepository;
     _fileRepository                            = fileRepository;
     _mediaRepository                           = mediaRepository;
     _callQueueCustomerPubFactory               = callQueueCustomerPubFactory;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="authenticationService">Provides access to authentication features.</param>
 /// <param name="authorizationService">Authorization service.</param>
 /// <param name="formHelperService">Provides assistance with forms.</param>
 /// <param name="testimonialRepository">Repository for administering testimonials in underlying storage.</param>
 /// <param name="webHelperService">Web helper service.</param>
 public TestimonialService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IFormHelperService formHelperService, ITestimonialRepository testimonialRepository, IWebHelperService webHelperService)
 {
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _formHelperService     = formHelperService;
     _testimonialRepository = testimonialRepository;
     _webHelperService      = webHelperService;
 }
Exemplo n.º 5
0
 public JewelryItemViewModelBuilder(int jewelryID, IJewelRepository jewelRepository, ITestimonialRepository testimonialRepository, IFileSystem fileSystem, IMappingEngine mapper)
 {
     this.jewelryID             = jewelryID;
     this.jewelRepository       = jewelRepository;
     this.testimonialRepository = testimonialRepository;
     this.fileSystem            = fileSystem;
     this.mapper = mapper;
 }
Exemplo n.º 6
0
 public TestimonialService(ITestimonialRepository repository, ILoggerFactory loggerFactory,
                           IUnitOfWork unitOfWork, IWebHelper webHelper)
 {
     _logger     = loggerFactory.CreateLogger("TestimonialService");
     _repository = repository;
     _unitOfWork = unitOfWork;
     _webHelper  = webHelper;
 }
Exemplo n.º 7
0
 public TestimonialController(IMapper mapper, ITestimonialRepository testimonialRepository,
                              IAboutUsRepository aboutUsRepository,
                              IBestServicesRepository servicesRepository)
 {
     _mapper                = mapper;
     _aboutUsRepository     = aboutUsRepository;
     _testimonialRepository = testimonialRepository;
     _servicesRepository    = servicesRepository;
 }
Exemplo n.º 8
0
        //
        // GET: /JewelryItem/

        public JewelryItemController(IJewelRepository jewelRepository, IMediaSetBuilder mediaSetBuilder, IWebHelpers webHelpers, IFileSystem fileSystem, IBestOffer bestOffer, IWishListPersistence wishListPersistence, ITestimonialRepository testimonailRepository, IUserMailer mailer, IPathBarGenerator pathBarGenerator, IMappingEngine mapper)
        {
            this.jewelRepository       = jewelRepository;
            this.mediaSetBuilder       = mediaSetBuilder;
            this.webHelpers            = webHelpers;
            this.fileSystem            = fileSystem;
            this.bestOffer             = bestOffer;
            this.wishListPersistence   = wishListPersistence;
            this.testimonailRepository = testimonailRepository;
            this.mailer           = mailer;
            this.pathBarGenerator = pathBarGenerator;
            this.mapper           = mapper;
        }
Exemplo n.º 9
0
 //
 // GET: /JewelryItem/
 public JewelryItemController(IJewelRepository jewelRepository, IMediaSetBuilder mediaSetBuilder, IWebHelpers webHelpers, IFileSystem fileSystem, IBestOffer bestOffer, IWishListPersistence wishListPersistence, ITestimonialRepository testimonailRepository, IUserMailer mailer, IPathBarGenerator pathBarGenerator, IMappingEngine mapper)
 {
     this.jewelRepository = jewelRepository;
     this.mediaSetBuilder = mediaSetBuilder;
     this.webHelpers = webHelpers;
     this.fileSystem = fileSystem;
     this.bestOffer = bestOffer;
     this.wishListPersistence = wishListPersistence;
     this.testimonailRepository = testimonailRepository;
     this.mailer = mailer;
     this.pathBarGenerator = pathBarGenerator;
     this.mapper = mapper;
 }
Exemplo n.º 10
0
 //
 // GET: /JewelDesign/
 public JewelDesignController(IDiamondRepository diamondRepository, IJONFormatter formatter, IMappingEngine mapper, IJewelRepository jewelRepository, IWebHelpers webHelpers, IXmlSourceFactory xmlSourceFactory, IFileSystem fileSystem, DiamondHelpBuilder diamondHelpBuilder, ITabsRepository tabsRepository, IPathBarGenerator pathBarGenerator, ITestimonialRepository testimonialRepository)
 {
     this.diamondRepository = diamondRepository;
     this.formatter = formatter;
     this.mapper = mapper;
     this.jewelRepository = jewelRepository;
     this.webHelpers = webHelpers;
     this.xmlSourceFactory = xmlSourceFactory;
     this.fileSystem = fileSystem;
     this.diamondHelpBuilder = diamondHelpBuilder;
     this.tabsRepository = tabsRepository;
     this.pathBarGenerator = pathBarGenerator;
     this.testimonialRepository = testimonialRepository;
 }
Exemplo n.º 11
0
        //
        // GET: /JewelDesign/

        public JewelDesignController(IDiamondRepository diamondRepository, IJONFormatter formatter, IMappingEngine mapper, IJewelRepository jewelRepository, IWebHelpers webHelpers, IXmlSourceFactory xmlSourceFactory, IFileSystem fileSystem, DiamondHelpBuilder diamondHelpBuilder, ITabsRepository tabsRepository, IPathBarGenerator pathBarGenerator, ITestimonialRepository testimonialRepository)
        {
            this.diamondRepository     = diamondRepository;
            this.formatter             = formatter;
            this.mapper                = mapper;
            this.jewelRepository       = jewelRepository;
            this.webHelpers            = webHelpers;
            this.xmlSourceFactory      = xmlSourceFactory;
            this.fileSystem            = fileSystem;
            this.diamondHelpBuilder    = diamondHelpBuilder;
            this.tabsRepository        = tabsRepository;
            this.pathBarGenerator      = pathBarGenerator;
            this.testimonialRepository = testimonialRepository;
        }
        public AppUnitOfWork(
            IValidationService validationService,
            IDomainEventBus domainEventBus,
            AppContext appContext,
            IAuthorRepository authorRepository,
            IBlogPostRepository blogPostRepository,
            ICategoryRepository categoryRepository,
            ILocationRepository locationRepository,
            ITagRepository tagRepository,
            ICarouselItemRepository carouselItemRepository,
            IContentHtmlRepository contentHtmlRepository,
            IContentTextRepository contentTextRepository,
            IFaqRepository faqRepository,
            IMailingListRepository mailingListRepository,
            IProjectRepository projectRepository,
            ITestimonialRepository testimonialRepository
            )
            : base(true, validationService, domainEventBus, appContext)
        {
            AuthorRepository   = authorRepository;
            BlogPostRepository = blogPostRepository;
            CategoryRepository = categoryRepository;
            LocationRepository = locationRepository;
            TagRepository      = tagRepository;

            AddRepository(AuthorRepository);
            AddRepository(BlogPostRepository);
            AddRepository(CategoryRepository);
            AddRepository(LocationRepository);
            AddRepository(TagRepository);

            CarouselItemRepository = carouselItemRepository;
            ContentHtmlRepository  = contentHtmlRepository;
            ContentTextRepository  = contentTextRepository;
            FaqRepository          = faqRepository;
            MailingListRepository  = mailingListRepository;
            ProjectRepository      = projectRepository;
            TestimonialRepository  = testimonialRepository;

            AddRepository(CarouselItemRepository);
            AddRepository(ContentHtmlRepository);
            AddRepository(ContentTextRepository);
            AddRepository(FaqRepository);
            AddRepository(MailingListRepository);
            AddRepository(ProjectRepository);
            AddRepository(TestimonialRepository);
        }
Exemplo n.º 13
0
 public HomeController(
     ICourseCategoryRepository coursecategoryrepo,
     ICourseRepository courserepo,
     IBlogRepository blogrepo,
     ICollectionRepository collectionrepo,
     IColletionPictureRepository picturerepo,
     IEventRepository eventrepo,
     IEventPictureRepository eventpicturerepo,
     ITestimonialRepository testimonialrepo)
 {
     coursecategoryrepository = coursecategoryrepo;
     courserepository         = courserepo;
     blogrepository           = blogrepo;
     collectionrepository     = collectionrepo;
     picturerepository        = picturerepo;
     eventrepository          = eventrepo;
     eventpicturerepository   = eventpicturerepo;
     testimonialrepository    = testimonialrepo;
 }
Exemplo n.º 14
0
 public TestimonialApplication(ITestimonialRepository irepository)
 {
     _irepository = irepository;
 }
Exemplo n.º 15
0
 public TestimonialController(ITestimonialRepository testimonialRepository)
 {
     _repository = testimonialRepository;
 }
 public TestimonialViewComponent(IMapper mapper, ITestimonialRepository testimonialRepository)
 {
     _mapper = mapper;
     _testimonialRepository = testimonialRepository;
 }
Exemplo n.º 17
0
 public HomeController(ITestimonialRepository testimonialRespository)
 {
     _repository = testimonialRespository;
 }
 public CustomerTestimoialController(ITestimonialRepository testimonialRepository)
 {
     _testimonialRepository = testimonialRepository;
 }