Exemplo n.º 1
0
 public LoginWindow(ILoginService loginService, IUsuarioService usuarioService, ITarefaService tarefaService)
 {
     InitializeComponent();
     _loginService   = loginService;
     _usuarioService = usuarioService;
     _tarefaService  = tarefaService;
 }
 public TarefaController(ITarefaService tarefaService,
                         IUsuarioService usuarioService,
                         ITarefaAdapter tarefaAdapter)
 {
     _tarefaService  = tarefaService;
     _usuarioService = usuarioService;
     _tarefaAdapter  = tarefaAdapter;
 }
Exemplo n.º 3
0
 public TarefasController(ITarefaRepository tarefaRepository,
                          ITarefaService tarefaService,
                          IMapper mapper,
                          INotificador notificador) : base(notificador)
 {
     _tarefaRepository = tarefaRepository;
     _tarefaService    = tarefaService;
     _mapper           = mapper;
 }
Exemplo n.º 4
0
 public TarefaController(
     IUserService userService,
     ITarefaService tarefaService,
     AplicacaoContext context)
 {
     _userService   = userService;
     _tarefaService = tarefaService;
     _context       = context;
 }
 public TarefaController(ITarefaRepositorio tarefaRepositorio,
                         IMapper mapper,
                         INotificador notificador,
                         IHostingEnvironment env,
                         ITarefaService tarefaService,
                         IUser user) : base(notificador, user)
 {
     _tarefaRepositorio = tarefaRepositorio;
     _env           = env;
     _mapper        = mapper;
     _tarefaService = tarefaService;
 }
Exemplo n.º 6
0
 public HomeWindow(Guid idUsuario, ITarefaService tarefaService, ILoginService loginService, IUsuarioService usuarioService)
 {
     InitializeComponent();
     IdUsuario       = idUsuario;
     _tarefaService  = tarefaService;
     _loginService   = loginService;
     _usuarioService = usuarioService;
     ObterTarefasCadastradas();
     ObterTarefasCadastradasConcluidas();
     txtEdicaoTarefa.Visibility   = Visibility.Hidden;
     btnConcluirEdicao.Visibility = Visibility.Hidden;
 }
Exemplo n.º 7
0
 public TarefaAppService(IMapper mapper, ITarefaService tarefaService)
     : base(mapper, tarefaService)
 {
     _tarefaService = tarefaService;
 }
 public TarefasController(ITarefaService tarefaService, ITagService tagServie)
 {
     _tarefaService = tarefaService;
     _tagServie     = tagServie;
 }
Exemplo n.º 9
0
 public TarefaAppService(ITarefaService baseService, INotificacaoService notiService) : base(baseService)
 {
     _baseService = baseService;
     _notiService = notiService;
 }
Exemplo n.º 10
0
 public HomeController(ITarefaService servicodi)
 {
     servico = servicodi;
 }
 public ClienteService(IClienteRepository repositorio, ITarefaService tarefaService)
 {
     _repositorio   = repositorio;
     _tarefaService = tarefaService;
 }
Exemplo n.º 12
0
 public TarefaController(IUser user, ITarefaService tarefaService, IMapper mapper) : base(user)
 {
     _tarefaService = tarefaService;
     _mapper        = mapper;
 }
 public TarefaAppService(ITarefaService TarefaService)
     : base(TarefaService)
 {
     _TarefaService = TarefaService;
 }
Exemplo n.º 14
0
 public TarefaController(IUnitOfWork unitOfWork, ITarefaService tarefaService)
 {
     _unitOfWork    = unitOfWork;
     _tarefaService = tarefaService;
 }
Exemplo n.º 15
0
 /// <inheritdoc />
 public TarefaController(ApiContext context, ITarefaService tarefaService)
 {
     _context       = context;
     _tarefaService = tarefaService;
 }
Exemplo n.º 16
0
 public TarefaAppService(ITarefaService tarefaAppService) : base(tarefaAppService)
 {
     _tarefaAppService = tarefaAppService;
 }
 public TarefaAppService(ITarefaService tarefaService, ITarefaRepository tarefaRepository, IUnityOfWork unityOfWork) : base(unityOfWork)
 {
     _tarefaService    = tarefaService;
     _tarefaRepository = tarefaRepository;
 }
Exemplo n.º 18
0
 public TarefaAppService(ITarefaService tarefaService, IUnitOfWork uow, IMapper mapper) : base(uow)
 {
     _tarefaService = tarefaService;
     _mapper        = mapper;
 }
Exemplo n.º 19
0
 public TarefaAppService(ITarefaRepository tarefaRepository, ITarefaService tarefaService)
 {
     _tarefaRepository = tarefaRepository;
     _tarefaService = tarefaService;
 }
Exemplo n.º 20
0
 public TarefaBusiness()
 {
     this.tarefaService = new TarefaService();
 }
Exemplo n.º 21
0
 public TarefaController(ITarefaService tarefaService)
 {
     _tarefaService = tarefaService;
 }
 public TarefasController(ITarefaService tarefaService, ICategoriaService categoriaService, ITagService tagService)
 {
     _tarefaService    = tarefaService;
     _categoriaService = categoriaService;
     _tagService       = tagService;
 }