예제 #1
0
        public ProductosController(
            UserManager <IdentityUser> userManager,
            SignInManager <IdentityUser> signInManager,
            MessagesService messagesService,
            IProductosService productosService,
            IVisitasService VisitasService,
            ICategoriasService categoriasService,
            IProductoCategoriasService productoCategoriasService,
            IVendedoresService vendedoresService,
            IUsuariosService usuariosService,
            IProductosVendedoresService productosVendedoresService,
            IReviewsService reviewsService,
            IHelperService helperService,
            IOpcionesProductosService opcionesProductosService,
            IImagenesProductosService imagenesProductosService,
            IMemoryCache memoryCache)

        {
            _userManager                = userManager;
            _signInManager              = signInManager;
            _messagesService            = messagesService;
            _productosService           = productosService;
            _VisitasService             = VisitasService;
            _categoriasService          = categoriasService;
            _productoCategoriasService  = productoCategoriasService;
            _vendedoresService          = vendedoresService;
            _usuariosService            = usuariosService;
            _productosVendedoresService = productosVendedoresService;
            _reviewsService             = reviewsService;
            _helperService              = helperService;
            _opcionesProductosService   = opcionesProductosService;
            _imagenesProductosService   = imagenesProductosService;
            _memoryCache                = memoryCache;
        }
예제 #2
0
 public CheckoutController(IProductosService productosService,
                           IUsuariosService usuariosService,
                           UserManager <IdentityUser> userManager,
                           IVendedoresService vendedoresService,
                           IOpcionesProductosService opcionesProductosService,
                           IVisitasService visitasService)
 {
     _productosService         = productosService;
     _usuariosService          = usuariosService;
     _userManager              = userManager;
     _vendedoresService        = vendedoresService;
     _opcionesProductosService = opcionesProductosService;
     _visitasService           = visitasService;
 }
예제 #3
0
 public UsuariosController(IUsuariosService usuariosService,
                           UserManager <IdentityUser> userManager,
                           IUbicacionesUsuariosService ubicacionesUsuariosService,
                           IManejoProductosService manejoProductosService,
                           SignInManager <IdentityUser> signInManager,
                           IOpcionesProductosService opcionesProductosController)
 {
     _usuariosService           = usuariosService;
     _userManager               = userManager;
     _ubicacionesUsuarioService = ubicacionesUsuariosService;
     _manejoProductosService    = manejoProductosService;
     _signInManager             = signInManager;
     _opcionesProductosService  = opcionesProductosController;
 }
예제 #4
0
 public ProductosController(IProductosService productosService,
                            IVendedoresService vendedoresService,
                            IOpcionesProductosService opcionesProductosService,
                            IReviewsService reviewsService,
                            ICategoriasService categoriasService,
                            IImagenesProductosService imagenesProductosService,
                            IMapper mapper)
 {
     _productosService         = productosService;
     _vendedoresService        = vendedoresService;
     _opcionesProductosService = opcionesProductosService;
     _reviewsService           = reviewsService;
     _categoriaService         = categoriasService;
     _imagenesProductosService = imagenesProductosService;
     _mapper = mapper;
 }
 public OpcionesProductosController(IOpcionesProductosService opcionesProductosService, IVendedoresService vendedoresService, IProductosService productosService)
 {
     _opcionesProductosService = opcionesProductosService;
     _vendedoresService        = vendedoresService;
     _productosService         = productosService;
 }