예제 #1
0
 public HomeController(IProdutoAppServices produtoAppServices, IHomeAppServices homeAppServices, IMarcaAppServices marcaAppServices, IWebHostEnvironment env)
 {
     _produtoAppServices = produtoAppServices;
     _homeAppServices    = homeAppServices;
     _marcaAppServices   = marcaAppServices;
     _env = env;
 }
예제 #2
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;
 }
예제 #3
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;
 }
예제 #4
0
 public MarcaController(IMarcaAppServices marcaAppServices)
 {
     _marcaAppServices = marcaAppServices;
 }
예제 #5
0
 public MenuViewComponent(IMarcaAppServices marcaAppServices, IMaterialAppServices materialAppServices)
 {
     _marcaAppServices    = marcaAppServices;
     _materialAppServices = materialAppServices;
 }