Exemplo n.º 1
0
 public VendasController(IVendasAppService vendasAppService, IVendasRepository ivendasRepository, IMapper mapper)
 {
     _vendasAppService  = vendasAppService;
     _ivendasRepository = ivendasRepository;
     _mapper            = mapper;
 }
Exemplo n.º 2
0
 public VendasController(IVendasRepository vendasRepository, IProdutoRepository produtoRepository)
 {
     this.vendasRepository  = vendasRepository;
     this.produtoRepository = produtoRepository;
 }
Exemplo n.º 3
0
 public VendasServicecs(IVendasRepository ivendasRepository)
 {
     _ivendasRepository = ivendasRepository;
 }
Exemplo n.º 4
0
 public VendasController(IVendasRepository vendasRepository)
 {
     this.vendasRepository = vendasRepository;
 }
Exemplo n.º 5
0
 public VendasAppServices(IVendasService vendasService, IVendasRepository vendasRepository, IUnityOfWork unityOrWork, IMapper mapper) : base(unityOrWork)
 {
     _vendasService    = vendasService;
     _vendasRepository = vendasRepository;
     _mapper           = mapper;
 }
Exemplo n.º 6
0
 public VendasService(IVendasRepository vendasRepository, IVendasRepositoryReadOnly vendasRepositoryReadOnly) : base(vendasRepository)
 {
     _vendasRepository         = vendasRepository;
     _vendasRepositoryReadOnly = vendasRepositoryReadOnly;
 }