Exemple #1
0
 public ContatoController(IContatoService service, IContatoTipoService contato, IPessoaService pessoaService)
 {
     _mapper             = AutoMapperConfig.Mapper;
     _contatoService     = service;
     _contatoTipoService = contato;
     _pessoaService      = pessoaService;
 }
Exemple #2
0
 public ContatosController(IContatoRepository contatoRepository, IContatoService mapper, IPessoaRepository pessoaRepository, ITipoContatoRepository tipoContatoRepository)
 {
     _contatoRepository     = contatoRepository;
     _mapper                = mapper;
     _pessoaRepository      = pessoaRepository;
     _tipoContatoRepository = tipoContatoRepository;
 }
Exemple #3
0
        public ContatoTest()
        {
            var service = new ServiceCollection();

            service.AddTransient <IContatoService, ContatoService>();
            var provider = service.BuildServiceProvider();

            _contatoService = provider.GetService <IContatoService>();
        }
Exemple #4
0
 public MensagemAppService(IMensagemService baseService, IUsuarioService usuService, IConfiguracaoService conService, IContatoService ctService, IGrupoService grService, ICampanhaService cpService) : base(baseService)
 {
     _baseService = baseService;
     _usuService  = usuService;
     _conService  = conService;
     _ctService   = ctService;
     _grService   = grService;
     _cpService   = cpService;
 }
Exemple #5
0
 public PessoaController(IPessoaService service, IContatoTipoService tipo, IPessoaMarcadorService marcador, IEnderecoTipoService endereco, IEnderecoService enderecoService, IContatoService contatoService)
 {
     _mapper                = AutoMapperConfig.Mapper;
     _pessoaService         = service;
     _pessoaMarcadorService = marcador;
     _contatoTipoService    = tipo;
     _enderecoTipoService   = endereco;
     _enderecoService       = enderecoService;
     _contatoService        = contatoService;
 }
Exemple #6
0
 public PendenciaFinanceiraController(IContatoRepository contatoRepository,
                                      IMapper mapper,
                                      IContatoService contatoService,
                                      INotificador notificador,
                                      IUser user,
                                      UserManager <IdentityUser> userManager) : base(notificador, user)
 {
     _contatoRepository = contatoRepository;
     _contatoService    = contatoService;
     _mapper            = mapper;
     _userManager       = userManager;
 }
Exemple #7
0
 public ContatoAppService(IContatoService baseService, IUsuarioService usuService) : base(baseService)
 {
     _baseService = baseService;
     _usuService  = usuService;
 }
 public ContatoController(ILogger <ContatoController> logger, IContatoService contatoService)
 {
     _logger         = logger;
     _contatoService = contatoService;
 }
 public AgendaController(IContatoService contatoService)
 {
     _contatoService = contatoService;
 }
Exemple #10
0
 public ContatoTest()
 {
     _contatoService = base.ServiceProvider.GetService <IContatoService>();
 }
 public ContatoAppService(IContatoService contatoService)
 {
     _ContatoService = contatoService;
 }
Exemple #12
0
 public ContatoController(IContatoService contatoService)
 {
     _contatoService = contatoService;
 }
Exemple #13
0
 public ContatoHub(IContatoService srContato)
 {
     this._SrContato = srContato;
 }
 public ContatoService(IContatoService contatoService)
 {
     _contatoService = contatoService;
 }
Exemple #15
0
 public ContatoController(IContatoService service)
 {
     this._service = service;
 }
 public ContatoApplication(IContatoService contatoService, IMapper mapper)
 {
     _contatoService = contatoService;
     _mapper         = mapper;
 }
 public Index1Model(IContatoService contatoService)
 {
     _contatoService = contatoService;
 }
 public ContatosController(IContatoService service)
 {
     _service = service;
 }
Exemple #19
0
 public ContatoApplicationService(IContatoService contatoService)
 {
     this.contatoService = contatoService;
 }
Exemple #20
0
 public ContatoController(IContatoService ContatoService, IMapper mapper, ILogger <ContatoController> logger)
 {
     _ContatoService = ContatoService;
     _mapper         = mapper;
     _logger         = logger;
 }
Exemple #21
0
 public ContatoAppService(IUnitOfWorkService uow)
     : base(uow)
 {
     _uow            = uow;
     _contatoService = uow.Service <IContatoService>();
 }
 public ClienteService(IClienteRepository clienteRepository, IContatoService contatoService)
 {
     _clienteRepository = clienteRepository;
     _contatoService    = contatoService;
 }
Exemple #23
0
 public ContatoAppService(IContatoService cttService)
     : base(cttService)
 {
     _cttService = cttService;
 }
Exemple #24
0
 public NovoContatoForm(IContatoService service, int idParaEdicao = 0)
 {
     InitializeComponent();
     this.service      = service;
     this.idParaEdicao = idParaEdicao;
 }
 public ContatoAppService(IContatoService contatoService, IHttpContextAccessor httpContextAccessor)
 {
     _contatoService      = contatoService;
     _httpContextAccessor = httpContextAccessor;
 }
Exemple #26
0
 public ContatoAppService(IContatoService contatoService)
     : base(contatoService)
 {
     _contatoService = contatoService;
 }
 public Form1(IContatoService contatosService)
 {
     InitializeComponent();
     this.contatosService = contatosService;
 }
 public ContatoController(IContatoService service)
 {
     contatoService = service;
 }
Exemple #29
0
 public HomeController(IContatoService contatoService)
 {
     _contatoService = contatoService;
 }
Exemple #30
0
 public ContatoTests(IContatoService service)
 {
     this.service = service;
 }
Exemple #31
0
 public ContatoApplication(IContatoService contatoService)
 {
     _contatoService = contatoService;
 }