Ejemplo n.º 1
0
 public ProdutoCorAppServices(IProdutoCorServices domainService, IUnitOfWork unitOfWork, ICorService corService)
 {
     _domainService = domainService;
     _unitOfWork    = unitOfWork;
     _corService    = corService;
     _mapper        = AutoMapperConfig.Mapper;
 }
Ejemplo n.º 2
0
 public KitAppServices(IKitsServices kitsServices, IProdutoCorServices produtoCorServices, IProdutoFotoServices produtoFotoServices, IUnitOfWork unitOfWork)
 {
     _kitsServices        = kitsServices;
     _produtoCorServices  = produtoCorServices;
     _produtoFotoServices = produtoFotoServices;
     _unitOfWork          = unitOfWork;
     _mapper = AutoMapperConfig.Mapper;
 }
Ejemplo n.º 3
0
 public PedidoAppServices(IUsuarioServices usuarioServices, IUnitOfWork unitOfWork, IPedidoService pedidoService, IProdutoCorServices produtoCorServices, IProdutoFotoServices produtoFotoServices, IEmpresaAppServices empresaAppServices, ICarrinhoAppServices carrinhoAppServices)
 {
     _usuarioServices     = usuarioServices;
     _unitOfWork          = unitOfWork;
     _pedidoService       = pedidoService;
     _produtoCorServices  = produtoCorServices;
     _produtoFotoServices = produtoFotoServices;
     _empresaAppServices  = empresaAppServices;
     _mapper = AutoMapperConfig.Mapper;
 }
Ejemplo n.º 4
0
        public CarrinhoAppServices(IHttpContextAccessor httpContext, ICorreiosServices correiosServices, IProdutoCorServices produtoCorServices, IKitsServices kitsServices)
        {
            _httpContext        = httpContext;
            _correiosServices   = correiosServices;
            _produtoCorServices = produtoCorServices;
            _kitsServices       = kitsServices;
            _mapper             = AutoMapperConfig.Mapper;

            statusPromo = false;
        }