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; }
public FavoritosController(IFavoritosService favoritosService, IProductosService productosService, IUsuariosService usuariosService, IVendedoresService vendedoresService) { _favoritosService = favoritosService; _productosService = productosService; _productosService = productosService; _usuariosService = usuariosService; _vendedoresService = vendedoresService; }
public MercadosController(SignInManager <IdentityUser> signInManager, UserManager <IdentityUser> userManager, IMercadosService mercadosService, IUsuariosService usuariosService, IProductosService productosService) { _userManager = userManager; _signInManager = signInManager; _mercadosService = mercadosService; _usuariosService = usuariosService; _productosService = productosService; }
public APICOPController( ApplicationDbContext context, ICategoriasService categoriasService, IProductosService productosService, IProductoCategoriasService productoCategoriasService, IMemoryCache memoryCache) { _context = context; _categoriasService = categoriasService; _productosService = productosService; _productoCategoriasService = productoCategoriasService; _memoryCache = memoryCache; }
public HelperService(ApplicationDbContext context, IConfiguration configuration, IMemoryCache memoryCache, IProductosService productosService, ICategoriasService categoriasService, IProductoCategoriasService productoCategoriasService) { _context = context; _configuration = configuration; _memoryCache = memoryCache; _productosService = productosService; _categoriasService = categoriasService; _productoCategoriasService = productoCategoriasService; }
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; }
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 ProductosController(IProductosService _iProductosService) { iProductosService = _iProductosService; }
public PedidosController(IPedidosService service, IProductosService productosServices, ICombosService combosService) { this.service = service; this.productosServices = productosServices; this.combosService = combosService; }
public OpcionesProductosController(IOpcionesProductosService opcionesProductosService, IVendedoresService vendedoresService, IProductosService productosService) { _opcionesProductosService = opcionesProductosService; _vendedoresService = vendedoresService; _productosService = productosService; }
public PedidosController(IPedidosService pedidosService, IProductosService productosService, IProveedoresService proveedoresService) { PedidosService = pedidosService; ProductosService = productosService; ProveedoresService = proveedoresService; }
public GenerarProductoKitController(IProductosService productosService, IListaCombosService listaCombosService) { _productosService = productosService; _listaCombosService = listaCombosService; }
public ConsultarProductosCommand() { _service = new ProductosServiceClient(); }
public ProductoCategoriasController(IProductoCategoriasService productoCategoriasService, ICategoriasService categoriasService, IProductosService productosService) { _productoCategoriasService = productoCategoriasService; _categoriasService = categoriasService; _productosService = productosService; }
public ReviewsController(IProductosService ProductosService) { this.ProductosService = ProductosService; }
public ProductosController(IProductosService productoService, IListaCombosService listaCombosService) { _productoService = productoService; _listaCombosService = listaCombosService; }
public ProductosController(IProductosService productosServices) { this.productosServices = productosServices; }
public void SetServiceProductos(IProductosService serviceProductos) { this.serviceProductos = serviceProductos; }