public ApplicationService(IMapper mapper, IUnityOfWork unityOfWork, IApplicationContextManager applicationContextManager, IServiceProvider serviceProvider)
 {
     _mapper      = mapper;
     _unityOfWork = unityOfWork;
     _applicationContextManager = applicationContextManager;
     _serviceProvider           = serviceProvider;
 }
 public TokenService(IMapper mapper,
                     IUnityOfWork unityOfWork,
                     IOptions <AppSettings> appSettings,
                     IApplicationContextManager applicationContextManager,
                     IServiceProvider serviceProvider) : base(mapper, unityOfWork, applicationContextManager, serviceProvider)
 {
     _appSettings = appSettings.Value;
 }
Exemple #3
0
 public ClienteAppService(IMapper mapper,
                          IClienteRepository clienteRepository,
                          IUnityOfWork unityOfWork,
                          IApplicationContextManager applicationContextManager,
                          IClienteService clienteService,
                          IServiceProvider serviceProvider) : base(mapper, unityOfWork, applicationContextManager, serviceProvider)
 {
     _clienteService    = clienteService;
     _clienteRepository = clienteRepository;
 }
Exemple #4
0
 public AuthenticationAppService(IOptions <AppSettings> appSettings,
                                 IClienteService clienteService,
                                 IMapper mapper,
                                 ITokenService tokenService,
                                 IUnityOfWork unityOfWork,
                                 IApplicationContextManager applicationContextManager,
                                 IServiceProvider serviceProvider)
     : base(mapper, unityOfWork, applicationContextManager, serviceProvider)
 {
     _tokenService   = tokenService;
     _appSettings    = appSettings.Value;
     _clienteService = clienteService;
 }
 public AcmControllerFactory(IDependencyResolver dependencyResolver, IApplicationContextManager applicationContextManager)
 {
     _dependencyResolver = dependencyResolver;
     _applicationContextManager = applicationContextManager;
 }
 public ApplicationManagerController(IApplicationContextManager applicationContextManager)
 {
     _applicationContextManager = applicationContextManager;
 }
 public ApplicationService(IMapper mapper, IApplicationContextManager applicationContextManager)
 {
     _mapper = mapper;
     _applicationContextManager = applicationContextManager;
 }
Exemple #8
0
 public DepartamentoAppService(IMapper mapper, ICategoriaRepository categoriaRepository, IApplicationContextManager applicationContextManager) : base(mapper, applicationContextManager)
 {
     _categoriaRepository = categoriaRepository;
 }
Exemple #9
0
 public LojaAppService(IMapper mapper,
                       IApplicationContextManager applicationContextManager)
     : base(mapper, applicationContextManager)
 {
 }