예제 #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;
 }
예제 #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;
 }
예제 #3
0
 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;
 }
예제 #4
0
 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;
 }
예제 #5
0
 public ProdutoViewComponent(SignInManager <IdentityUser> signInManager, IProdutoCorAppServices produtoCorAppServices)
 {
     _signInManager         = signInManager;
     _produtoCorAppServices = produtoCorAppServices;
 }