public AdminProdutoController(IMarcaAppServices marcaAppServices, IMaterialAppServices materialAppServices, IProdutoAppServices produtoAppServices, IProdutoCorAppServices produtoCorAppServices, IProdutoFotoAppServices produtoFotoAppServices, ICorAppServices corAppServices) { _marcaAppServices = marcaAppServices; _materialAppServices = materialAppServices; _produtoAppServices = produtoAppServices; _produtoCorAppServices = produtoCorAppServices; _produtoFotoAppServices = produtoFotoAppServices; _corAppServices = corAppServices; }
public ProdutosController(IProdutoAppServices produtoAppServices, IProdutoFotoAppServices produtoFotoAppServices, IProdutoCorAppServices produtoCorAppServices, IMarcaAppServices marcaAppServices, IMaterialAppServices materialAppServices, SignInManager <IdentityUser> signInManager, ICorAppServices corAppServices) { _produtoAppServices = produtoAppServices; _produtoFotoAppServices = produtoFotoAppServices; _produtoCorAppServices = produtoCorAppServices; _marcaAppServices = marcaAppServices; _materialAppServices = materialAppServices; _signInManager = signInManager; _corAppServices = corAppServices; }
public PedidoController(UserManager <IdentityUser> userManager, IPedidoAppServices pedidoAppServices, IUsuarioAppServices usuarioAppServices, IProdutoCorAppServices produtoCorAppServices, IProdutoAppServices produtoAppServices, IKitAppServices kitAppServices, ICorAppServices corAppServices, IEmpresaAppServices empresaAppServices) { _userManager = userManager; _pedidoAppServices = pedidoAppServices; _usuarioAppServices = usuarioAppServices; _produtoCorAppServices = produtoCorAppServices; _produtoAppServices = produtoAppServices; _kitAppServices = kitAppServices; _corAppServices = corAppServices; _empresaAppServices = empresaAppServices; }
public CarrinhoController(IProdutoAppServices produtoAppServices, IProdutoCorAppServices produtoCorAppServices, ICarrinhoAppServices carrinhoAppServices, IPedidoAppServices pedidoAppServices, UserManager <IdentityUser> userManager, IEmpresaAppServices empresaAppServices, IKitAppServices kitAppServices, SignInManager <IdentityUser> signInManager, ICorAppServices corAppServices, IUsuarioAppServices usuarioAppServices) { _produtoAppServices = produtoAppServices; _produtoCorAppServices = produtoCorAppServices; _carrinhoAppServices = carrinhoAppServices; _pedidoAppServices = pedidoAppServices; _userManager = userManager; _empresaAppServices = empresaAppServices; _kitAppServices = kitAppServices; _signInManager = signInManager; _corAppServices = corAppServices; _usuarioAppServices = usuarioAppServices; }