Exemplo n.º 1
0
 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;
 }
Exemplo n.º 2
0
 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;
 }
Exemplo n.º 3
0
 public KitsController(IKitAppServices kitsAppServices, IProdutoFotoAppServices produtoFotoAppServices, SignInManager <IdentityUser> signInManager)
 {
     _kitsAppServices        = kitsAppServices;
     _produtoFotoAppServices = produtoFotoAppServices;
     _signInManager          = signInManager;
 }