Exemplo n.º 1
0
 public ProdutoController(IProdutoRepository repoProduto,
                          ICaixaRepository repoCaixa,
                          IMapper mapper)
 {
     _repoProduto = repoProduto;
     _repoCaixa   = repoCaixa;
     _mapper      = mapper;
 }
Exemplo n.º 2
0
 public CaixaController(ICaixaRepository repoCaixa,
                        IUsuarioRepository repoUsuario,
                        IMapper mapper)
 {
     _repoCaixa   = repoCaixa;
     _repoUsuario = repoUsuario;
     _mapper      = mapper;
 }
Exemplo n.º 3
0
 public VendaController(IVendaRepository repoVenda,
                        ICaixaRepository repoCaixa,
                        IComandaRepository repoComanda,
                        IMapper mapper)
 {
     _repoVenda   = repoVenda;
     _repoCaixa   = repoCaixa;
     _repoComanda = repoComanda;
     _mapper      = mapper;
 }
Exemplo n.º 4
0
 public CaixaAppService(ICaixaRepository caixaRepository,
                        IParametrosFinanceiroRepository parametrosFinanceiroRepository,
                        IUsuarioAppService usuarioAppService,
                        MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.caixaRepository = caixaRepository;
     this.parametrosFinanceiroRepository = parametrosFinanceiroRepository;
     this.usuarioAppService = usuarioAppService;
 }
Exemplo n.º 5
0
 public DashboardService(ICaixaRepository caixaRepository,
                         IReceberRepository receberRepository,
                         IPagarRepository pagarRepository,
                         IPlanoContaRepository planocontaRepository
                         )
 {
     _caixaRepository      = caixaRepository;
     _receberRepository    = receberRepository;
     _pagarRepository      = pagarRepository;
     _planocontaRepository = planocontaRepository;
 }
Exemplo n.º 6
0
 public RelatoriosController(IPessoaService pessoaService,
                             IEmpresaService empresaService,
                             IUsuarioService usuarioService,
                             ICentroCustoService centroCustoService,
                             IPlanoContaService PlanoContaService,
                             IContaService contaService,
                             ICaixaRepository caixaRepository,
                             IReceberRepository receberRepository,
                             IPagarRepository pagarRepository
                             )
 {
     _pessoaService      = pessoaService;
     _empresaService     = empresaService;
     _usuarioService     = usuarioService;
     _centroCustoService = centroCustoService;
     _PlanoContaService  = PlanoContaService;
     _contaService       = contaService;
     _caixaRepository    = caixaRepository;
     _receberRepository  = receberRepository;
     _pagarRepository    = pagarRepository;
 }
Exemplo n.º 7
0
 public FluxoCaixaService(ICaixaRepository caixaRepository, ISessaoRepository sessaoRepository)
 {
     this._caixaRepository  = caixaRepository;
     this._sessaoRepository = sessaoRepository;
 }
Exemplo n.º 8
0
 public CaixaController(ICaixaRepository repo)
 {
     _repo = repo;
 }
Exemplo n.º 9
0
 public CaixaService(ICaixaRepository caixaRepository, IEstoqueCaixaRepository estoqueCaixaRepository, IUnitOfWork unitOfWork)
 {
     _caixaRepository        = caixaRepository;
     _estoqueCaixaRepository = estoqueCaixaRepository;
     _unitOfWork             = unitOfWork;
 }
Exemplo n.º 10
0
 public CaixaAppService(ICaixaRepository caixaRepository)
 {
     this._caixaRepository = caixaRepository;
 }
Exemplo n.º 11
0
 public CaixaService(ICaixaRepository caixaRepository)
     : base(caixaRepository)
 {
     _caixaRepository = caixaRepository;
 }
Exemplo n.º 12
0
 public AgendaService(ISessaoRepository sessaoRepository, ICaixaRepository caixaRepository)
 {
     this._sessaoRepository = sessaoRepository;
     this._caixaRepository  = caixaRepository;
 }