public LancamentoNegocio(ILancamento lancamentoerviceRepository, IProtheus serviceProthues, IMarcacao marcacao, IFechamento fechamentoServiceRepositor) { _lancamentoerviceRepository = lancamentoerviceRepository; _serviceProthues = serviceProthues; _marcacao = marcacao; _fechamentoServiceRepository = fechamentoServiceRepositor; }
public FluigService(IMarcacao marcacaoServiceRepository, IFluig fluigAppServiceRepository, IProtheus protheusServicoRepository) { WSFluig = new WorkflowEngineServiceClient(); _marcacaoServiceRepository = marcacaoServiceRepository; _fluigAppServiceRepository = fluigAppServiceRepository; _prothuesSevicoRepository = protheusServicoRepository; }
public FechamentoController(IFechamento fechamentoServiceRepository, IProtheus prothuesService, IMarcacao marcacaoServiceRepository, IMapper mapper, IConfiguracao configuracao, IMarcacao marcacao, ILancamento lancamento, IJornadaTrabalho jornada, INotificacao notificacao, IFluigAppService fluigAppService, ILancamentoNegocio lancamentoNegocio, IFechamentoNegocio fechamentoNegocio, IJornadaTrabalhoNegocio jornadaTrbNegocio) { _prothuesService = prothuesService; _marcacaoServiceRepository = marcacaoServiceRepository; _mapper = mapper; _configuracao = configuracao; _marcacao = marcacao; _lancamentoerviceRepository = lancamento; _jornadaTrbServiceRepository = jornada; _fechamentoServiceRepository = fechamentoServiceRepository; _Notificacao = notificacao; _fluigAppService = fluigAppService; _lancamentoNegocio = lancamentoNegocio; _fechamentoNegocio = fechamentoNegocio; _jornadaTrbNegocio = jornadaTrbNegocio; }
public MarcacaoController(IJornadaTrabalhoNegocio jornadaTrabalhoNegocio, IProtheus prothuesService, IMarcacao marcacaoServiceRepository, IMapper mapper, IConfiguracao configuracao, IMarcacao marcacao, ILancamento lancamento, IJornadaTrabalho jornada) { _jornadaTrbNegocio = jornadaTrabalhoNegocio; _prothuesService = prothuesService; _marcacaoServiceRepository = marcacaoServiceRepository; _mapper = mapper; _configuracao = configuracao; _marcacao = marcacao; _lancamentoerviceRepository = lancamento; _jornadaTrbServiceRepository = jornada; }
public async Task <bool> RealizaMarcacao(Marcacao marcacao, IMarcacao iMarcacao) { return(await iMarcacao.EfetuarMarcacao(marcacao)); }
public MarcacaoController(IMarcacao db) { _db = db; }