public DrowController(ImageRepository imageRepository, ImageSizeRepository imageSizeRepository, ProductRepository productRepository, IPaginatedMetaService paginatedMetaService) { ProductRepository = productRepository; ImageRepository = imageRepository; ImageSizeRepository = imageSizeRepository; _paginatedMetaService = paginatedMetaService; }
public PGRows(IConnectorsRepository connectorRepository, IPaginatedMetaService paginatedMetaService, ILogger <PGRows> logger, ISyncRepository syncRepository) { _connectorRepository = connectorRepository; _paginatedMetaService = paginatedMetaService; _logger = logger; _syncRepository = syncRepository; }
public FindController( IPaginatedMetaService paginatedMetaService, WebDbContext Context, IAddresServices Address, WebEventoo_DomainClasses.Services.IExhibitionServices Cermoney, IColorService Color, ICommentService Comment, IEductionservices Eduction, IEventServices Event, WebExhibitionoo_DomainClasses.Services.IExhibitionServices Exhibition, IInformationService Information, IPlaceServices Place ) { FAddressServices = Address; FCermoneyServices = Cermoney; FColorServices = Color; FCommentServices = Comment; FEductionServices = Eduction; FEventServices = Event; FExhibitionServices = Exhibition; FInformtionSErvices = Information; FPlacesServices = Place; context = Context; _paginatedMetaService = paginatedMetaService; }
public PostController(IOptions <GlobalSetting> optionsAccessor, IPaginatedMetaService paginatedMetaService) { _optionsAccessor = optionsAccessor; _paginatedMetaService = paginatedMetaService; _itemsPerPage = _optionsAccessor.Value.MAX_VIEW_WEB_COUNT_POSTS; _postLogic = new PostLogic(_itemsPerPage); }
public GallaryModel(IManufacture manufacutre, ICar car, IBuy buy, IBuyRecords buyRecords, IOutcome outcome, IPaginatedMetaService paginatedMetaService) { this.manufacutre = manufacutre; this.car = car; this.buy = buy; this.buyRecords = buyRecords; this.outcome = outcome; _paginatedMetaService = paginatedMetaService; }
public BlogController(IPostService postService, ICategoryService categoryService, ITagService tagService, IPaginatedMetaService paginatedMetaService) { _postService = postService; _categoryService = categoryService; _tagService = tagService; _paginatedMetaService = paginatedMetaService; }
public SearchController(ISearchService searchService, IPaginatedMetaService paginatedMetaService, ICategoryService categoryService, ITagService tagService, IPostService postService) { _searchService = searchService; _paginatedMetaService = paginatedMetaService; _categoryService = categoryService; _tagService = tagService; _postService = postService; }
public HomeController(ILogger <HomeController> logger, IPaginatedMetaService paginatedMetaService) { _logger = logger; _paginatedMetaService = paginatedMetaService; }
public ProductController(ImageRepository imageRepository, ProductRepository productRepository, IPaginatedMetaService paginatedMetaService) { ImageRepository = imageRepository; ProductRepository = productRepository; _paginatedMetaService = paginatedMetaService; }
public HomeController(IPaginatedMetaService paginatedMetaService) { _paginatedMetaService = paginatedMetaService; }
public IndexModel(IPaginatedMetaService paginatedMetaService) { _paginatedMetaService = paginatedMetaService; }