public CategoriaController(ICategoriaService categoriaService,
                            IMapper mapper,
                            IRequestNotificator notificator) : base(notificator)
 {
     _categoriaService = categoriaService;
     _mapper           = mapper;
 }
 public ProdutoController(IProdutoService produtoService,
                          IMapper mapper,
                          IRequestNotificator notificator) : base(notificator)
 {
     _produtoService = produtoService;
     _mapper         = mapper;
 }
示例#3
0
 public MovimentacaoSaidaProdutoController(IMovimentacaoSaidaProdutoService movimentacaoSaidaProdutoService,
                                           IMapper mapper,
                                           IRequestNotificator notifications) : base(notifications)
 {
     _movimentacaoSaidaProdutoService = movimentacaoSaidaProdutoService;
     _mapper = mapper;
 }
 public AuthController(IMapper mapper,
                       IAutenticacaoUsuarioService autenticacaoUsuarioService,
                       IRequestNotificator notifications) : base(notifications)
 {
     _autenticacaoUsuarioService = autenticacaoUsuarioService;
     _mapper = mapper;
 }
 public EstoqueController(IEstoqueService estoqueService,
                          IMapper mapper,
                          IRequestNotificator notificator) : base(notificator)
 {
     _estoqueService = estoqueService;
     _mapper         = mapper;
 }
示例#6
0
 public TaxaJurosController(ITaxaJurosService taxaJurosService,
                            IMapper mapper,
                            IRequestNotificator notifications) : base(notifications)
 {
     _taxaJurosService = taxaJurosService;
     _mapper           = mapper;
 }
 public AutenticacaoUsuarioService(UserManager <IdentityUser> userManager,
                                   SignInManager <IdentityUser> signInManager,
                                   IRequestNotificator notifications)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _notifications = notifications;
 }
 public AutenticacaoUsuarioService(UserManager <IdentityUser> userManager,
                                   SignInManager <IdentityUser> signInManager,
                                   IOptions <JwtSettings> jwtSettings,
                                   IRequestNotificator notifications)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _jwtSettings   = jwtSettings.Value;
     _notifications = notifications;
 }
 public AutenticacaoUsuarioService(IRequestNotificator notificator,
                                   UserManager <IdentityUser> userManager,
                                   SignInManager <IdentityUser> signInManager,
                                   IOptions <JwtConfiguration> jwtConfiguration,
                                   IRequestNotificator notifications)
 {
     _userManager      = userManager;
     _signInManager    = signInManager;
     _jwtConfiguration = jwtConfiguration.Value;
     _notifications    = notifications;
 }
示例#10
0
 public MovimentacaoSaidaProdutoService(IMovimentacaoSaidaProdutoRepository movimentacaoSaidaProdutoRepository,
                                        IRequestNotificator notifications,
                                        IProdutoService produtoService,
                                        IEstoqueService estoqueService,
                                        IMediator mediator)
 {
     _movimentacaoSaidaProdutoRepository = movimentacaoSaidaProdutoRepository;
     _produtoService = produtoService;
     _estoqueService = estoqueService;
     _mediator       = mediator;
     _notifications  = notifications;
 }
 public TaxaJurosService(IRequestNotificator notifications)
 {
     _notifications = notifications;
 }
 protected ApiControllerBase(IRequestNotificator notificator)
 {
     _notificator = notificator;
 }
 public EstoqueService(IEstoqueRepository estoqueRepository,
                       IRequestNotificator notifications)
 {
     _estoqueRepository = estoqueRepository;
     _notifications     = notifications;
 }
示例#14
0
 public ProdutoService(IProdutoRepository produtoRepository,
                       IRequestNotificator notifications)
 {
     _produtoRepository = produtoRepository;
     _notifications     = notifications;
 }
示例#15
0
 public CategoriaService(ICategoriaRepository categoriaRepository,
                         IRequestNotificator notifications)
 {
     _categoriaRepository = categoriaRepository;
     _notifications       = notifications;
 }
 public MovimentacaoEntradaProdutoService(IMovimentacaoEntradaProdutoRepository movimentacaoEntradaProdutoRepository,
                                          IRequestNotificator notifications)
 {
     _movimentacaoEntradaProdutoRepository = movimentacaoEntradaProdutoRepository;
     _notifications = notifications;
 }
 protected ApiControllerBase(IRequestNotificator notifications)
 {
     _notifications = notifications;
 }
 public ShowMeTheCodeController(IRequestNotificator notifications) : base(notifications)
 {
 }