Exemplo n.º 1
0
 public DrowController(ImageRepository imageRepository, ImageSizeRepository imageSizeRepository, ProductRepository productRepository, IPaginatedMetaService paginatedMetaService)
 {
     ProductRepository     = productRepository;
     ImageRepository       = imageRepository;
     ImageSizeRepository   = imageSizeRepository;
     _paginatedMetaService = paginatedMetaService;
 }
Exemplo n.º 2
0
 public PGRows(IConnectorsRepository connectorRepository, IPaginatedMetaService paginatedMetaService, ILogger <PGRows> logger, ISyncRepository syncRepository)
 {
     _connectorRepository  = connectorRepository;
     _paginatedMetaService = paginatedMetaService;
     _logger         = logger;
     _syncRepository = syncRepository;
 }
Exemplo n.º 3
0
        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;
        }
Exemplo n.º 4
0
        public PostController(IOptions <GlobalSetting> optionsAccessor, IPaginatedMetaService paginatedMetaService)
        {
            _optionsAccessor      = optionsAccessor;
            _paginatedMetaService = paginatedMetaService;
            _itemsPerPage         = _optionsAccessor.Value.MAX_VIEW_WEB_COUNT_POSTS;

            _postLogic = new PostLogic(_itemsPerPage);
        }
Exemplo n.º 5
0
 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;
 }
Exemplo n.º 6
0
 public BlogController(IPostService postService,
                       ICategoryService categoryService,
                       ITagService tagService,
                       IPaginatedMetaService paginatedMetaService)
 {
     _postService          = postService;
     _categoryService      = categoryService;
     _tagService           = tagService;
     _paginatedMetaService = paginatedMetaService;
 }
Exemplo n.º 7
0
 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;
 }
Exemplo n.º 9
0
 public ProductController(ImageRepository imageRepository, ProductRepository productRepository, IPaginatedMetaService paginatedMetaService)
 {
     ImageRepository       = imageRepository;
     ProductRepository     = productRepository;
     _paginatedMetaService = paginatedMetaService;
 }
Exemplo n.º 10
0
 public HomeController(IPaginatedMetaService paginatedMetaService)
 {
     _paginatedMetaService = paginatedMetaService;
 }
Exemplo n.º 11
0
 public IndexModel(IPaginatedMetaService paginatedMetaService)
 {
     _paginatedMetaService = paginatedMetaService;
 }