コード例 #1
0
 public LancamentoNegocio(ILancamento lancamentoerviceRepository, IProtheus serviceProthues, IMarcacao marcacao, IFechamento fechamentoServiceRepositor)
 {
     _lancamentoerviceRepository = lancamentoerviceRepository;
     _serviceProthues            = serviceProthues;
     _marcacao = marcacao;
     _fechamentoServiceRepository = fechamentoServiceRepositor;
 }
コード例 #2
0
 public FluigService(IMarcacao marcacaoServiceRepository, IFluig fluigAppServiceRepository, IProtheus protheusServicoRepository)
 {
     WSFluig = new WorkflowEngineServiceClient();
     _marcacaoServiceRepository = marcacaoServiceRepository;
     _fluigAppServiceRepository = fluigAppServiceRepository;
     _prothuesSevicoRepository  = protheusServicoRepository;
 }
コード例 #3
0
 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;
 }
コード例 #4
0
 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;
 }
コード例 #5
0
 public async Task <bool> RealizaMarcacao(Marcacao marcacao, IMarcacao iMarcacao)
 {
     return(await iMarcacao.EfetuarMarcacao(marcacao));
 }
コード例 #6
0
 public MarcacaoController(IMarcacao db)
 {
     _db = db;
 }