コード例 #1
0
        public frmFormasPagamento(IFormaPagamentoService service)
        {
            InitializeComponent();
            formaPagamentoBLL = new FormaPagamentoBLL(service);

            popularGrid();
        }
コード例 #2
0
 public FormaPagamentoController(INotificador notificador,
                                 IFormaPagamentoService formaPagamentoService,
                                 IFormaPagamentoRepository formaPagamentoRepository,
                                 IMapper mapper) : base(notificador)
 {
     _formaPagamentoService    = formaPagamentoService;
     _formaPagamentoRepository = formaPagamentoRepository;
     _mapper = mapper;
 }
コード例 #3
0
 public FormasPagamentoController(IMapper mapper,
                                  IFormaPagamentoService formaPagamentoService,
                                  IUriService uriService,
                                  INotificador notificador,
                                  IUser user) : base(mapper, uriService, notificador, user)
 {
     _mapper = mapper;
     _formaPagamentoService = formaPagamentoService;
 }
コード例 #4
0
 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;
 }
コード例 #6
0
 public FormaPagamentoController(IFormaPagamentoService formaPagamentoService)
 {
     _formaPagamentoService = formaPagamentoService;
 }
コード例 #7
0
 public FormaPagamentoAppService(IFormaPagamentoService appService)
     : base(appService)
 {
     _appService = appService;
 }
コード例 #8
0
 public FormaPagamentoBLL(IFormaPagamentoService service)
 {
     _service = service;
 }
コード例 #9
0
ファイル: FormaPagamentoApp.cs プロジェクト: andersonst/SysOp
 public FormaPagamentoApp(IFormaPagamentoService formaPagamentoService)
     : base(formaPagamentoService)
 {
     _formaPagamentoService = formaPagamentoService;
 }
コード例 #10
0
 public FormaPagamentoController(IFormaPagamentoService formaPagService,
                                 IAutenticacaoService autenticacaoService)
 {
     this._autenticacaoService = autenticacaoService;
     this._formaPagService     = formaPagService;
 }
コード例 #11
0
 //injetando a dependência no construtor da controller
 public DependencyInjectionController(IFormaPagamentoService formaPagamento)
 {
     _formaPagamento = formaPagamento;
 }
コード例 #12
0
 public FormaPagamentoController(IFormaPagamentoService service)
 {
     _service = service;
 }