public frmFormasPagamento(IFormaPagamentoService service) { InitializeComponent(); formaPagamentoBLL = new FormaPagamentoBLL(service); popularGrid(); }
public FormaPagamentoController(INotificador notificador, IFormaPagamentoService formaPagamentoService, IFormaPagamentoRepository formaPagamentoRepository, IMapper mapper) : base(notificador) { _formaPagamentoService = formaPagamentoService; _formaPagamentoRepository = formaPagamentoRepository; _mapper = mapper; }
public FormasPagamentoController(IMapper mapper, IFormaPagamentoService formaPagamentoService, IUriService uriService, INotificador notificador, IUser user) : base(mapper, uriService, notificador, user) { _mapper = mapper; _formaPagamentoService = formaPagamentoService; }
public VendasController(IClienteService clienteService, IProdutoService produtoService, ITipoPagamentoService tipoPagamentoService, IVendedorService vendedorService, IPedidoService pedidoService, IItemPedidoService itemPedidoService, IFormaPagamentoService formaPagamentoService) { _clienteService = clienteService; _produtoService = produtoService; _tipoPagamentoService = tipoPagamentoService; _vendedorService = vendedorService; _pedidoService = pedidoService; _itemPedidoService = itemPedidoService; _formaPagamentoService = formaPagamentoService; }
public FormaPagamentoController(IFormaPagamentoService formaPagamentoService) { _formaPagamentoService = formaPagamentoService; }
public FormaPagamentoAppService(IFormaPagamentoService appService) : base(appService) { _appService = appService; }
public FormaPagamentoBLL(IFormaPagamentoService service) { _service = service; }
public FormaPagamentoApp(IFormaPagamentoService formaPagamentoService) : base(formaPagamentoService) { _formaPagamentoService = formaPagamentoService; }
public FormaPagamentoController(IFormaPagamentoService formaPagService, IAutenticacaoService autenticacaoService) { this._autenticacaoService = autenticacaoService; this._formaPagService = formaPagService; }
//injetando a dependência no construtor da controller public DependencyInjectionController(IFormaPagamentoService formaPagamento) { _formaPagamento = formaPagamento; }
public FormaPagamentoController(IFormaPagamentoService service) { _service = service; }