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 KitsController(IKitAppServices kitsAppServices, IProdutoFotoAppServices produtoFotoAppServices, SignInManager <IdentityUser> signInManager) { _kitsAppServices = kitsAppServices; _produtoFotoAppServices = produtoFotoAppServices; _signInManager = signInManager; }