Пример #1
0
 public UsuarioApp(IFuncionarioService funcionarioService, IUsuarioService usuarioService, IEstabelecimentoService estabelecimentoService,
                   IUnitOfWork unitOfWork) : base(unitOfWork)
 {
     _usuarioService         = usuarioService;
     _funcionarioService     = funcionarioService;
     _estabelecimentoService = estabelecimentoService;
 }
Пример #2
0
 public FuncionarioApp(IFuncionarioService funcionarioService, IEnderecoService enderecoService, IEstabelecimentoService estabelecimentoService,
                       IUnitOfWork unitOfWork) : base(unitOfWork)
 {
     _funcionarioService     = funcionarioService;
     _enderecoService        = enderecoService;
     _estabelecimentoService = estabelecimentoService;
 }
 public EstacionamentoController(IEstabelecimentoService estabelecimentoService, IMapper mapper, Notificador notificador, IVeiculoService veiculoService, IControleVeiculoService controleVeiculoService)
 {
     _estabelecimentoService = estabelecimentoService;
     _mapper                 = mapper;
     _notificador            = notificador;
     _veiculoService         = veiculoService;
     _controleVeiculoService = controleVeiculoService;
 }
Пример #4
0
 public EstabelecimentoApp(IEstabelecimentoService estabelecimentoService, IEnderecoJuridicoService enderecoJuridicoService,
                           IFuncionarioService funcionarioService, IUsuarioService usuarioService, IUnitOfWork unitOfWork) : base(unitOfWork)
 {
     _estabelecimentoService  = estabelecimentoService;
     _enderecoJuridicoService = enderecoJuridicoService;
     _usuarioService          = usuarioService;
     _funcionarioService      = funcionarioService;
 }
Пример #5
0
 public OperarVagasService(IVeiculoService veiculoService,
                           IEstabelecimentoService estabelecimentoService,
                           IIncluirOcorrenciaService incluirOcorrenciaService)
 {
     _veiculoService            = veiculoService;
     _estabelecimentoService    = estabelecimentoService;
     _incluirOcorrrenciaService = incluirOcorrenciaService;
 }
Пример #6
0
 public FuncionarioController(IFuncionarioService funcionarioService,
                              ICargoService cargoService,
                              IEstabelecimentoService estabelecimentoService,
                              IUsuarioService usuarioService)
 {
     _funcionarioService     = funcionarioService;
     _cargoService           = cargoService;
     _estabelecimentoService = estabelecimentoService;
     _usuarioService         = usuarioService;
 }
Пример #7
0
 public AgendamentoController(IAgendamentoService agendamentoService,
                              IClienteService clienteService,
                              IEstabelecimentoService estabelecimentoService,
                              IHorarioService horarioService)
 {
     _agendamentoService     = agendamentoService;
     _clienteService         = clienteService;
     _estabelecimentoService = estabelecimentoService;
     _horarioService         = horarioService;
 }
 public EstabelecimentoController(IEstabelecimentoService estabelecimentoService)
 {
     _estabelecimentoService = estabelecimentoService;
 }
Пример #9
0
 public EstabelecimentoController(IEstabelecimentoService estabelecimentoService, IMapper mapper)
 {
     this._mapper = mapper;
     this._estabelecimentoService = estabelecimentoService;
 }
 public EstabelecimentoController(IEstabelecimentoService estabelecimentoService, ICategoriaService categoriaService)
 {
     _estabelecimentoService = estabelecimentoService;
     _categoriaService       = categoriaService;
 }
Пример #11
0
 public EstabelecimentoAppService(IEstabelecimentoService estabelecimentoService)
     : base(estabelecimentoService)
 {
     _estabelecimentoService = estabelecimentoService;
 }