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; }
public TarefasController(ITarefaRepository tarefaRepository, ITarefaService tarefaService, IMapper mapper, INotificador notificador) : base(notificador) { _tarefaRepository = tarefaRepository; _tarefaService = tarefaService; _mapper = mapper; }
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; }
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; }
public TarefaAppService(IMapper mapper, ITarefaService tarefaService) : base(mapper, tarefaService) { _tarefaService = tarefaService; }
public TarefasController(ITarefaService tarefaService, ITagService tagServie) { _tarefaService = tarefaService; _tagServie = tagServie; }
public TarefaAppService(ITarefaService baseService, INotificacaoService notiService) : base(baseService) { _baseService = baseService; _notiService = notiService; }
public HomeController(ITarefaService servicodi) { servico = servicodi; }
public ClienteService(IClienteRepository repositorio, ITarefaService tarefaService) { _repositorio = repositorio; _tarefaService = tarefaService; }
public TarefaController(IUser user, ITarefaService tarefaService, IMapper mapper) : base(user) { _tarefaService = tarefaService; _mapper = mapper; }
public TarefaAppService(ITarefaService TarefaService) : base(TarefaService) { _TarefaService = TarefaService; }
public TarefaController(IUnitOfWork unitOfWork, ITarefaService tarefaService) { _unitOfWork = unitOfWork; _tarefaService = tarefaService; }
/// <inheritdoc /> public TarefaController(ApiContext context, ITarefaService tarefaService) { _context = context; _tarefaService = tarefaService; }
public TarefaAppService(ITarefaService tarefaAppService) : base(tarefaAppService) { _tarefaAppService = tarefaAppService; }
public TarefaAppService(ITarefaService tarefaService, ITarefaRepository tarefaRepository, IUnityOfWork unityOfWork) : base(unityOfWork) { _tarefaService = tarefaService; _tarefaRepository = tarefaRepository; }
public TarefaAppService(ITarefaService tarefaService, IUnitOfWork uow, IMapper mapper) : base(uow) { _tarefaService = tarefaService; _mapper = mapper; }
public TarefaAppService(ITarefaRepository tarefaRepository, ITarefaService tarefaService) { _tarefaRepository = tarefaRepository; _tarefaService = tarefaService; }
public TarefaBusiness() { this.tarefaService = new TarefaService(); }
public TarefaController(ITarefaService tarefaService) { _tarefaService = tarefaService; }
public TarefasController(ITarefaService tarefaService, ICategoriaService categoriaService, ITagService tagService) { _tarefaService = tarefaService; _categoriaService = categoriaService; _tagService = tagService; }