Example #1
0
 public CondicoesPagamentoController(IMapper mapper,
                                     ICondicaoPagamentoService condicaoPagamentoService,
                                     IUriService uriService,
                                     INotificador notificador,
                                     IUser user) : base(mapper, uriService, notificador, user)
 {
     _mapper = mapper;
     _condicaoPagamentoService = condicaoPagamentoService;
 }
Example #2
0
        //private readonly IUsuarioRepresentadaService _usuarioRepresentadaService;

        public RepresentadaAppService(IRepresentadaService representadaService, IUnitOfWork uow,
                                      IContatoRepresentadaService contatoRepresentadaService,
                                      ICondicaoPagamentoService condicaoPagamentoService,
                                      IProdutoService produtoService,
                                      IPedidoService pedidoService
                                      //IUsuarioRepresentadaService usuarioRepresentadaService
                                      )
            : base(uow)
        {
            _representadaService        = representadaService;
            _contatoRepresentadaService = contatoRepresentadaService;
            _condicaoPagamentoService   = condicaoPagamentoService;
            _produtoService             = produtoService;
            _pedidoService = pedidoService;
            //_usuarioRepresentadaService = usuarioRepresentadaService;
        }
Example #3
0
 public CondicaoPagamentoController(ICondicaoPagamentoService condicaoPagamentoService)
 {
     _condicaoPagamentoService = condicaoPagamentoService;
 }
 public CondicaoPagamentoController(ICondicaoPagamentoService condicaoPagamentoService)
 {
     _condicaoPagamentoService = condicaoPagamentoService;
 }
Example #5
0
 public CondicaoPagamentoAppService(ICondicaoPagamentoService condicaoPagamentoService, IUnitOfWork uow)
     : base(uow)
 {
     _condicaoPagamentoService = condicaoPagamentoService;
 }
Example #6
0
 public CondicaoPagamentoAppService(ICondicaoPagamentoService service)
     : base(service)
 {
     _service = service;
 }